mirror of
https://github.com/RGBCube/serenity
synced 2025-07-27 10:27:35 +00:00
LibCompress: Implement proper handling of LZMA end-of-stream markers
This commit is contained in:
parent
b6f3b2f116
commit
8ff36e5910
4 changed files with 34 additions and 12 deletions
|
@ -29,6 +29,7 @@ struct LzmaDecompressorOptions {
|
|||
u8 position_bits { 0 };
|
||||
u32 dictionary_size { 0 };
|
||||
Optional<u64> uncompressed_size;
|
||||
bool reject_end_of_stream_marker { false };
|
||||
};
|
||||
|
||||
// Described in section "lzma file format".
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue