Fix uninitialized variables in alone_decoder.c. This bug was

triggered by the previous commit, since these variables were
not used by anything before support for a preset dictionary.
This commit is contained in:
Lasse Collin 2009-01-28 08:43:26 +02:00
parent f76e39cf93
commit 3241317093
1 changed files with 2 additions and 0 deletions

View File

@ -214,6 +214,8 @@ lzma_alone_decoder_init(lzma_next_coder *next, lzma_allocator *allocator,
next->coder->sequence = SEQ_PROPERTIES;
next->coder->pos = 0;
next->coder->options.dict_size = 0;
next->coder->options.preset_dict = NULL;
next->coder->options.preset_dict_size = 0;
next->coder->uncompressed_size = 0;
next->coder->memlimit = memlimit;
next->coder->memusage = LZMA_MEMUSAGE_BASE;