aboutsummaryrefslogtreecommitdiff
path: root/src/liblzma/common/stream_encoder_mt.c
diff options
context:
space:
mode:
authorLasse Collin <lasse.collin@tukaani.org>2022-11-24 01:32:16 +0200
committerLasse Collin <lasse.collin@tukaani.org>2022-11-24 01:32:16 +0200
commite1acf7107291f8b3d6d609a7133331ff36d35d14 (patch)
tree58782c40c61abb5d55ebe3851a4d6feb0cdcee3a /src/liblzma/common/stream_encoder_mt.c
parentliblzma: Fix another invalid free() after memory allocation failure. (diff)
downloadxz-e1acf7107291f8b3d6d609a7133331ff36d35d14.tar.xz
liblzma: Refactor to use lzma_filters_free().
lzma_filters_free() sets the options to NULL and ids to LZMA_VLI_UNKNOWN so there is no need to do it by caller; the filter arrays will always be left in a safe state. Also use memcpy() instead of a loop to copy a filter chain when it is known to be safe to copy LZMA_FILTERS_MAX + 1 (even if the elements past the terminator might be uninitialized).
Diffstat (limited to '')
-rw-r--r--src/liblzma/common/stream_encoder_mt.c11
1 files changed, 2 insertions, 9 deletions
diff --git a/src/liblzma/common/stream_encoder_mt.c b/src/liblzma/common/stream_encoder_mt.c
index 3245aebd..2c6d4386 100644
--- a/src/liblzma/common/stream_encoder_mt.c
+++ b/src/liblzma/common/stream_encoder_mt.c
@@ -866,8 +866,7 @@ stream_encoder_mt_end(void *coder_ptr, const lzma_allocator *allocator)
threads_end(coder, allocator);
lzma_outq_end(&coder->outq, allocator);
- for (size_t i = 0; coder->filters[i].id != LZMA_VLI_UNKNOWN; ++i)
- lzma_free(coder->filters[i].options, allocator);
+ lzma_filters_free(coder->filters, allocator);
lzma_next_end(&coder->index_encoder, allocator);
lzma_index_end(coder->index, allocator);
@@ -1068,13 +1067,7 @@ stream_encoder_mt_init(lzma_next_coder *next, const lzma_allocator *allocator,
coder->timeout = options->timeout;
// Free the old filter chain and copy the new one.
- for (size_t i = 0; coder->filters[i].id != LZMA_VLI_UNKNOWN; ++i)
- lzma_free(coder->filters[i].options, allocator);
-
- // Mark it as empty so that it is in a safe state in case
- // lzma_filters_copy() fails.
- coder->filters[0].id = LZMA_VLI_UNKNOWN;
-
+ lzma_filters_free(coder->filters, allocator);
return_if_error(lzma_filters_copy(
filters, coder->filters, allocator));