1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-27 00:17:46 +00:00

LibCompress: Implement proper handling of LZMA end-of-stream markers

This commit is contained in:
Tim Schumacher 2023-03-30 00:39:36 +02:00 committed by Andreas Kling
parent b6f3b2f116
commit 8ff36e5910
4 changed files with 34 additions and 12 deletions

View file

@ -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".