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/arm.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 '')
-rw-r--r-- | src/liblzma/simple/arm.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/liblzma/simple/arm.c b/src/liblzma/simple/arm.c index ff5073ae..1b8e24ac 100644 --- a/src/liblzma/simple/arm.c +++ b/src/liblzma/simple/arm.c @@ -49,7 +49,7 @@ arm_coder_init(lzma_next_coder *next, const lzma_allocator *allocator, const lzma_filter_info *filters, bool is_encoder) { return lzma_simple_coder_init(next, allocator, filters, - &arm_code, 0, 4, 4, is_encoder); + &arm_code, 0, 4, 4, is_encoder, true); } |