From: Lasse Collin Date: Wed, 28 Jan 2009 06:43:26 +0000 (+0200) Subject: Fix uninitialized variables in alone_decoder.c. This bug was X-Git-Tag: v4.999.8beta~22 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=3241317093595db9f79104faafe93cb989c9f858;p=xz 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. --- diff --git a/src/liblzma/common/alone_decoder.c b/src/liblzma/common/alone_decoder.c index e850a926..c822f04c 100644 --- a/src/liblzma/common/alone_decoder.c +++ b/src/liblzma/common/alone_decoder.c @@ -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;