Age | Commit message (Collapse) | Author | Files | Lines | |
---|---|---|---|---|---|
2009-04-28 | Fixed a crash in liblzma. | Lasse Collin | 1 | -1/+1 | |
liblzma tries to avoid useless free()/malloc() pairs in initialization when multiple files are handled using the same lzma_stream. This didn't work with filter chains due to comparison of wrong pointers in lzma_next_coder_init(), making liblzma think that no memory reallocation is needed even when it actually is. Easy way to trigger this bug is to decompress two files with a single xz command. The first file should have e.g. x86+LZMA2 as the filter chain, and the second file just LZMA2. | |||||
2009-04-13 | Put the interesting parts of XZ Utils into the public domain. | Lasse Collin | 1 | -10/+3 | |
Some minor documentation cleanups were made at the same time. | |||||
2009-02-17 | Added lzma_easy_buffer_encode(). Splitted easy.c into small | Lasse Collin | 1 | -0/+87 | |
pieces to avoid unneeded dependencies making statically linked applications bigger than needed. |