1
0
Fork 0
mirror of https://git.tukaani.org/xz.git synced 2024-04-04 12:36:23 +02:00

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

View file

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