diff options
author | Lasse Collin <lasse.collin@tukaani.org> | 2022-09-17 22:42:18 +0300 |
---|---|---|
committer | Lasse Collin <lasse.collin@tukaani.org> | 2022-09-17 22:42:18 +0300 |
commit | 177bdc922cb17bd0fd831ab8139dfae912a5c2b8 (patch) | |
tree | 9112ef3854225905b3d91db23195859d6b42492b /src/liblzma/simple/simple_coder.c | |
parent | Tests: Add a test file for lzma_index_append() integer overflow bug. (diff) | |
download | xz-177bdc922cb17bd0fd831ab8139dfae912a5c2b8.tar.xz |
liblzma: Simple/BCJ filters: Allow disabling generic BCJ options.
This will be needed for the ARM64 BCJ filter as it will use
its own options struct.
Diffstat (limited to 'src/liblzma/simple/simple_coder.c')
-rw-r--r-- | src/liblzma/simple/simple_coder.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/liblzma/simple/simple_coder.c b/src/liblzma/simple/simple_coder.c index 4f499bef..59018366 100644 --- a/src/liblzma/simple/simple_coder.c +++ b/src/liblzma/simple/simple_coder.c @@ -237,7 +237,7 @@ lzma_simple_coder_init(lzma_next_coder *next, const lzma_allocator *allocator, size_t (*filter)(void *simple, uint32_t now_pos, bool is_encoder, uint8_t *buffer, size_t size), size_t simple_size, size_t unfiltered_max, - uint32_t alignment, bool is_encoder) + uint32_t alignment, bool is_encoder, bool is_generic_bcj) { // Allocate memory for the lzma_simple_coder structure if needed. lzma_simple_coder *coder = next->coder; @@ -270,7 +270,7 @@ lzma_simple_coder_init(lzma_next_coder *next, const lzma_allocator *allocator, } } - if (filters[0].options != NULL) { + if (is_generic_bcj && filters[0].options != NULL) { const lzma_options_bcj *simple = filters[0].options; coder->now_pos = simple->start_offset; if (coder->now_pos & (alignment - 1)) |