mirror of
https://github.com/RGBCube/serenity
synced 2025-07-28 06:47:34 +00:00
gunzip+LibCompress: Increase buffer sizes used by Deflate and gunzip
Co-authored-by: Andreas Kling <kling@serenityos.org>
This commit is contained in:
parent
62b575ad7c
commit
9f238793e0
3 changed files with 5 additions and 5 deletions
|
@ -38,8 +38,8 @@ private:
|
|||
};
|
||||
|
||||
// Decompression - indexed by code
|
||||
Vector<u16> m_symbol_codes;
|
||||
Vector<u16> m_symbol_values;
|
||||
Vector<u16, 286> m_symbol_codes;
|
||||
Vector<u16, 286> m_symbol_values;
|
||||
|
||||
Array<PrefixTableEntry, 1 << max_allowed_prefixed_code_length> m_prefix_table {};
|
||||
size_t m_max_prefixed_code_length { 0 };
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue