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:
parent
0ea98e52ba
commit
803194ddd2
1 changed files with 2 additions and 0 deletions
|
@ -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;
|
||||
|
|
Loading…
Reference in a new issue