Files
nekonya 735795a7e1 [7-Zip] Fix LZMA dictionary size parsing
The LZMA dictionary size was being read from only 3 bytes (indices 1-3)
instead of the full 4 bytes (indices 1-4) specified in the LZMA format.

This caused decompression to fail with LZMAError.notEnoughToRepeat for
archives using dictionary sizes >= 16MB (e.g., LZMA:24 = 2^24 = 16MB),
because the high byte was not read and the dictionary size defaulted
to the minimum 4096 bytes.

Change: `for i in 1..<4` → `for i in 1..<5`
2026-05-14 21:31:30 +08:00
..
2026-02-18 12:21:57 +08:00
2026-02-18 12:21:57 +08:00
2026-01-31 15:30:24 +08:00
2026-02-18 12:21:57 +08:00
2026-01-31 15:30:24 +08:00
2026-01-31 15:30:24 +08:00
2026-02-18 12:21:57 +08:00
2026-02-18 12:21:57 +08:00
2026-02-18 12:21:57 +08:00
2026-02-18 12:21:57 +08:00
2026-02-18 12:21:57 +08:00