Age | Commit message (Collapse) | Author | Files | Lines | |
---|---|---|---|---|---|
2020-11-15 | Merge pull request #953 from lz4/vs2005 | Yann Collet | 6 | -29/+21 | |
better MSVC conformance | |||||
2020-11-14 | fix minor win32 warning | Yann Collet | 1 | -1/+2 | |
2020-11-14 | fixed minor Visual warning | Yann Collet | 1 | -1/+1 | |
doesn't happen on my environment, though it's a different version of Visual Studio | |||||
2020-11-14 | Merge pull request #952 from lz4/lz4io | Yann Collet | 6 | -78/+84 | |
Fix --sparse mode | |||||
2020-11-14 | better visual conformance | Yann Collet | 5 | -27/+18 | |
only include <intrin.h> on vs2005+ (#947) remove some useless #pragma fix a few minor Visual warnings | |||||
2020-11-14 | Merge branch 'dev' of github.com:Cyan4973/lz4 into dev | Yann Collet | 3 | -185/+205 | |
2020-11-14 | restrict BitScanForward() to VS2005+ | Yann Collet | 1 | -1/+1 | |
suggested by @aqrit in #947 | |||||
2020-11-14 | fix minor parse warning | Yann Collet | 1 | -1/+1 | |
2020-11-14 | all usages of prefs within lz4io are const | Yann Collet | 3 | -45/+48 | |
2020-11-14 | LZ4IO_openDstFile() doesn't need pref mutability | Yann Collet | 2 | -33/+36 | |
2020-11-14 | fixed force --sparse mode | Yann Collet | 3 | -1/+1 | |
2020-11-14 | Merge pull request #951 from lz4/lz4io | Yann Collet | 3 | -185/+205 | |
minor refactor of lz4io | |||||
2020-11-13 | dictionary functions don't need prefs mutability | Yann Collet | 1 | -4/+5 | |
2020-11-13 | LZ4IO_createDict() doesn't need prefs | Yann Collet | 2 | -28/+31 | |
2020-11-13 | LZ4IO_decompressSrcFile() doesn't need mutable prefs | Yann Collet | 1 | -5/+5 | |
2020-11-13 | selectDecoder() doesn't need mutable prefs | Yann Collet | 1 | -4/+4 | |
2020-11-13 | LZ4IO_passThrough() doesn't need prefs | Yann Collet | 1 | -9/+14 | |
2020-11-13 | LZ4IO_decompressLZ4F() doesn't need mutable prefs | Yann Collet | 1 | -4/+14 | |
2020-11-13 | LZ4IO_decodeLegacyStream() doesn't need mutable prefs | Yann Collet | 1 | -9/+9 | |
2020-11-13 | LZ4IO_fwriteSparse doesn't need writable prefs | Yann Collet | 1 | -5/+10 | |
2020-11-13 | minor refactor | Yann Collet | 1 | -32/+28 | |
mostly on the compression code path | |||||
2020-11-13 | minor refactor of lz4io | Yann Collet | 2 | -98/+98 | |
for readability. Mostly around --list capability | |||||
2020-11-13 | Merge pull request #950 from lz4/appvtest | Yann Collet | 1 | -8/+8 | |
appveyor artifact generation | |||||
2020-11-13 | appveyor artifact generation | Yann Collet | 1 | -8/+8 | |
fix presence of the dynamic library in produced package | |||||
2020-11-11 | Merge pull request #949 from lz4/cmakedll | Yann Collet | 1 | -0/+4 | |
fix cmake build of shared dll with visual | |||||
2020-11-11 | Merge pull request #946 from lz4/customMem | Yann Collet | 7 | -17/+48 | |
proposal for LZ4_USER_MEMORY_FUNCTIONS | |||||
2020-11-11 | fix cmake build of shared dll with visual | Yann Collet | 1 | -0/+4 | |
inspired from #891 | |||||
2020-11-09 | updated NEWS for v1.9.3 | Yann Collet | 1 | -2/+18 | |
2020-11-09 | minor : lz4frame include stdlib only if needed | Yann Collet | 1 | -1/+1 | |
2020-11-09 | proper fullbench's LZ4_calloc() | Yann Collet | 1 | -1/+1 | |
2020-11-09 | changed LZ4_calloc() to a 2-arguments signature | Yann Collet | 3 | -3/+5 | |
to remain similar to stdlib's calloc(). Updated test to use c++ compiler for stricter signature check. | |||||
2020-11-09 | fix fullbench's LZ4_free() | Yann Collet | 1 | -1/+1 | |
2020-11-08 | fix travis test | Yann Collet | 1 | -1/+1 | |
2020-11-08 | Merge branch 'dev' into customMem | Yann Collet | 4 | -19/+63 | |
2020-11-08 | first proposal for LZ4_USER_MEMORY_FUNCTIONS | Yann Collet | 6 | -16/+45 | |
makes it possible to replace at link time malloc, calloc and free by user-provided functions which must be named LZ4_malloc(), LZ4_calloc() and LZ4_free(). answer #937 | |||||
2020-11-08 | Merge pull request #944 from lz4/fix874 | Yann Collet | 1 | -1/+1 | |
fix #874 | |||||
2020-11-08 | Merge pull request #943 from lz4/fullbench_dec | Yann Collet | 1 | -3/+44 | |
Added decompression tests in fullbench | |||||
2020-11-08 | Merge pull request #945 from lz4/fix926 | Yann Collet | 3 | -15/+18 | |
fixed remaining ubsan warnings | |||||
2020-11-08 | attempt at silencing cppcheck | Yann Collet | 1 | -12/+12 | |
2020-11-08 | fixed remaining ubsan warnings | Yann Collet | 2 | -3/+6 | |
2020-11-08 | fix #874 | Yann Collet | 1 | -1/+1 | |
coverity reported a warning regarding a memcpy() overwrite. This is a false positive (the memory area is large enough), but it's true that it's not trivial to determine (encompassing struct), and it's proper anyway to only memcpy() just the right amount of data. | |||||
2020-11-08 | fullbench: added LZ4F_decompress_noHint() | Yann Collet | 1 | -0/+35 | |
2020-11-08 | added test for LZ4_decompress_safe_withPrefix64k() | Yann Collet | 1 | -3/+9 | |
2020-11-08 | update obsolete section documentation | Yann Collet | 3 | -38/+54 | |
and update manuals. fix #712 | |||||
2020-11-07 | Merge pull request #942 from lz4/fix926 | Yann Collet | 3 | -21/+57 | |
fix #926 | |||||
2020-11-07 | fix minor UBs | Yann Collet | 2 | -3/+5 | |
- check alignment before casting a pointer - saveDict : don't memmove() on NULL dst | |||||
2020-11-07 | added similar tests for LZ4_saveDict() | Yann Collet | 1 | -1/+17 | |
fast (non-HC) variant | |||||
2020-11-07 | fix #926 | Yann Collet | 2 | -20/+38 | |
fix incorrect behavior of LZ4_saveDictHC() when invoked right after initialization. | |||||
2020-11-07 | Merge pull request #941 from lz4/revertinline | Yann Collet | 2 | -20/+20 | |
Revert "Replace "static" to "LZ4_FORCE_INLINE" for small functions" | |||||
2020-11-07 | Merge pull request #940 from lz4/fix935 | Yann Collet | 2 | -3/+4 | |
fix #935 |