Fix uninitialized variable in LZMA encoder. This was

introduced in 369f72fd65.
This commit is contained in:
Lasse Collin 2008-06-11 21:42:47 +03:00
parent 0ea98e52ba
commit 803194ddd2
1 changed files with 2 additions and 0 deletions

View File

@ -181,6 +181,8 @@ lzma_lzma_encoder_init(lzma_next_coder *next, lzma_allocator *allocator,
1U << options->pos_bits, 1U << options->pos_bits,
next->coder->fast_bytes + 1 - MATCH_MIN_LEN); next->coder->fast_bytes + 1 - MATCH_MIN_LEN);
next->coder->prev_len_encoder = NULL;
// Misc // Misc
next->coder->longest_match_was_found = false; next->coder->longest_match_was_found = false;
next->coder->optimum_end_index = 0; next->coder->optimum_end_index = 0;