summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2021-08-30Merge tag 'v1.9.3' into lineage-18.1HEADlineage-18.1alk3pInjection
Change-Id: Iad56c1b17a32f9f356a4c1ff9557f0e79addf481
2020-11-15Merge branch 'dev' into releaseYann Collet
2020-11-15update cli entryYann Collet
2020-11-15Merge pull request #954 from lz4/devYann Collet
v1.9.3
2020-11-15update docYann Collet
2020-11-15Merge pull request #953 from lz4/vs2005Yann Collet
better MSVC conformance
2020-11-14fix minor win32 warningYann Collet
2020-11-14fixed minor Visual warningYann Collet
doesn't happen on my environment, though it's a different version of Visual Studio
2020-11-14Merge pull request #952 from lz4/lz4ioYann Collet
Fix --sparse mode
2020-11-14better visual conformanceYann Collet
only include <intrin.h> on vs2005+ (#947) remove some useless #pragma fix a few minor Visual warnings
2020-11-14Merge branch 'dev' of github.com:Cyan4973/lz4 into devYann Collet
2020-11-14restrict BitScanForward() to VS2005+Yann Collet
suggested by @aqrit in #947
2020-11-14fix minor parse warningYann Collet
2020-11-14all usages of prefs within lz4io are constYann Collet
2020-11-14LZ4IO_openDstFile() doesn't need pref mutabilityYann Collet
2020-11-14fixed force --sparse modeYann Collet
2020-11-14Merge pull request #951 from lz4/lz4ioYann Collet
minor refactor of lz4io
2020-11-13dictionary functions don't need prefs mutabilityYann Collet
2020-11-13LZ4IO_createDict() doesn't need prefsYann Collet
2020-11-13LZ4IO_decompressSrcFile() doesn't need mutable prefsYann Collet
2020-11-13selectDecoder() doesn't need mutable prefsYann Collet
2020-11-13LZ4IO_passThrough() doesn't need prefsYann Collet
2020-11-13LZ4IO_decompressLZ4F() doesn't need mutable prefsYann Collet
2020-11-13LZ4IO_decodeLegacyStream() doesn't need mutable prefsYann Collet
2020-11-13LZ4IO_fwriteSparse doesn't need writable prefsYann Collet
2020-11-13minor refactorYann Collet
mostly on the compression code path
2020-11-13minor refactor of lz4ioYann Collet
for readability. Mostly around --list capability
2020-11-13Merge pull request #950 from lz4/appvtestYann Collet
appveyor artifact generation
2020-11-13appveyor artifact generationYann Collet
fix presence of the dynamic library in produced package
2020-11-11Merge pull request #949 from lz4/cmakedllYann Collet
fix cmake build of shared dll with visual
2020-11-11Merge pull request #946 from lz4/customMemYann Collet
proposal for LZ4_USER_MEMORY_FUNCTIONS
2020-11-11fix cmake build of shared dll with visualYann Collet
inspired from #891
2020-11-09updated NEWS for v1.9.3Yann Collet
2020-11-09minor : lz4frame include stdlib only if neededYann Collet
2020-11-09proper fullbench's LZ4_calloc()Yann Collet
2020-11-09changed LZ4_calloc() to a 2-arguments signatureYann Collet
to remain similar to stdlib's calloc(). Updated test to use c++ compiler for stricter signature check.
2020-11-09fix fullbench's LZ4_free()Yann Collet
2020-11-08fix travis testYann Collet
2020-11-08Merge branch 'dev' into customMemYann Collet
2020-11-08first proposal for LZ4_USER_MEMORY_FUNCTIONSYann Collet
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-08Merge pull request #944 from lz4/fix874Yann Collet
fix #874
2020-11-08Merge pull request #943 from lz4/fullbench_decYann Collet
Added decompression tests in fullbench
2020-11-08Merge pull request #945 from lz4/fix926Yann Collet
fixed remaining ubsan warnings
2020-11-08attempt at silencing cppcheckYann Collet
2020-11-08fixed remaining ubsan warningsYann Collet
2020-11-08fix #874Yann Collet
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-08fullbench: added LZ4F_decompress_noHint()Yann Collet
2020-11-08added test for LZ4_decompress_safe_withPrefix64k()Yann Collet
2020-11-08update obsolete section documentationYann Collet
and update manuals. fix #712
2020-11-07Merge pull request #942 from lz4/fix926Yann Collet
fix #926