diff --git a/lib/std/compress/lzma2.zig b/lib/std/compress/lzma2.zig index 41e251dace84378439a1fe49f21750c2b5f50938..7d743f9a1b6c87c06b0aeca93cd8019eb0b75404 100644 --- a/lib/std/compress/lzma2.zig +++ b/lib/std/compress/lzma2.zig @@ -233,7 +233,6 @@ pub const Decode = struct { while (true) { if (accum.len >= expected_unpacked_size) break; - if (range_decoder.isFinished()) break; switch (try ld.process(reader, allocating, accum, &range_decoder, &n_read)) { .more => continue, .finished => break,