lzfx icon indicating copy to clipboard operation
lzfx copied to clipboard

Simplified LZFX-based compression library

Results 2 lzfx issues
Sort by recently updated
recently updated
newest added

``` The decompressed length is not being returned through the lzfx_decompress function. Instead it gave an LZFX_EARGS error. I used these parameters to call the function: retrunValue = lzfx_decompress(compressed.data(), size,...

Priority-Medium
Type-Defect
auto-migrated

``` function lzfx_decompress code line 244: if(olen != 0) return LZFX_EARGS; must be if(*olen != 0) return LZFX_EARGS; ``` Original issue reported on code.google.com by `[email protected]` on 16 Oct 2011...

Priority-Medium
Type-Defect
auto-migrated