A user reported an issue with not being able to decompress a file containing a LZMA stream:
https://github.com/CyberShadow/RABCDAsm/issues/7
The cause was that the file specifies a dictionary size of 0x0100000A. This value is rejected by lzma_alone_decoder, because apparently it is not a value that LZMA_Alone would create. (See alone_decoder.c, line 87) The same file decompresses fine with...
2013-03-18 04:37:14 PDT in LZMA Utils