Tests: Fix a memory leak in test_bcj_exact_size.
Thanks to Cristian Rodríguez.
This commit is contained in:
parent
17b29d4f0a
commit
c7f4041f6b
|
@ -65,6 +65,7 @@ decompress(void)
|
|||
if (ret == LZMA_STREAM_END) {
|
||||
expect(strm.total_in == compressed_size);
|
||||
expect(strm.total_out == sizeof(in));
|
||||
lzma_end(&strm);
|
||||
return;
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue