Properly initialize attribute encoding/length values

This commit is contained in:
Martin Willi 2009-11-10 11:07:37 +01:00
parent 733538a421
commit 5bfe1b2529
1 changed files with 2 additions and 0 deletions

View File

@ -880,6 +880,8 @@ generator_t *generator_create()
this->current_bit = 0;
this->last_payload_length_position_offset = 0;
this->header_length_position_offset = 0;
this->attribute_format = FALSE;
this->attribute_length = 0;
return &(this->public);
}