summaryrefslogtreecommitdiffstats
path: root/programs/lz4io.c
Commit message (Collapse)AuthorAgeFilesLines
* fixed compression timeYann Collet2018-09-051-10/+21
| | | | displayed at the end (#555)
* fasterDecSpeed can be triggered from cli with --favor-decSpeedYann Collet2018-04-261-0/+8
|
* Change Over Includes in the ProjectW. Felix Handte2018-04-241-1/+1
|
* fixed DISPLAYUPDATE()Yann Collet2018-04-061-3/+6
| | | | | | wrong comparison, which was always overflowing (hence was always true) except when it was not (i386, reported by pmc) in which case it would never show any information.
* Make LZ4F_compressFrame_usingCDict Take a Compression ContextW. Felix Handte2018-03-121-1/+1
|
* fix: missed semicolon at programs/lz4io.c:954hobomind2018-02-141-1/+1
|
* minor : try to tell static analyzer that we don't care if fseek() failsYann Collet2018-01-141-1/+1
| | | | as already explained in comments.
* lz4io: fixed minor ressource leakYann Collet2018-01-141-0/+1
|
* [lz4io] Fix decompression file stat with --rmNick Terrell2018-01-051-8/+12
|
* Fix bug which could sometimes result in the lz4 cli chmodding /dev/null if ↵Alice Atlas2017-12-041-1/+1
| | | | running as root
* Read the Dictionary into a Circular BufferW. Felix Handte2017-10-101-22/+49
|
* Add Dictionary Support to the Command Line ToolW. Felix Handte2017-10-101-4/+80
|
* cli : restored command -BX to enable block checksum (#322)Yann Collet2017-08-121-5/+6
|
* report where decompression ends (#313)Yann Collet2017-06-121-39/+60
| | | | | suggested by @ehem note : only works for files < 2 GB
* LZ4_compress_HC_destSize() uses LZ4HC_compress_generic() code pathYann Collet2017-03-161-1/+1
| | | | | Limits compression level to 10, to remain compatible with Hash Chain.
* fixed Visual compilation errorYann Collet2017-03-161-1/+1
| | | | | static const must be a "constant", like a macro even if it can be determined at compile time ...
* fix #332 : do not modify /dev/null permissionsYann Collet2017-03-161-37/+31
|
* Avoid fseek()'s 2GiB barrier with MinGWPrzemyslaw Skibinski2017-02-151-16/+5
|
* use FindFirstFileA and FindNextFileA on WindowsPrzemyslaw Skibinski2016-12-221-1/+1
|
* improved commentsPrzemyslaw Skibinski2016-12-211-1/+1
|
* use fseeko for 32-bit MacOSPrzemyslaw Skibinski2016-12-211-3/+1
|
* test Large File support for Mac OS-X in 32-bits modePrzemyslaw Skibinski2016-12-211-2/+11
|
* util.h and platform.h based on zstdPrzemyslaw Skibinski2016-12-211-1/+5
|
* fixed Visual Studio compilationPrzemyslaw Skibinski2016-12-211-0/+8
|
* improved MinGW supportPrzemyslaw Skibinski2016-12-211-6/+0
|
* improved formatting (2)Przemyslaw Skibinski2016-12-201-0/+2
|
* fixed gcc warnings (2)Przemyslaw Skibinski2016-12-201-1/+3
|
* improved platform.hPrzemyslaw Skibinski2016-12-201-2/+2
|
* executables use platform.hPrzemyslaw Skibinski2016-12-201-31/+2
|
* 15-bit LZ4HC_HASH_LOGPrzemyslaw Skibinski2016-12-071-1/+2
|
* fixed gcc warningsPrzemyslaw Skibinski2016-12-071-1/+1
|
* fixed LZ4IO_compressMultipleFilenamesPrzemyslaw Skibinski2016-11-221-3/+5
|
* added a few datesYann Collet2016-11-211-1/+1
|
* fixed : shadow global variable on gcc 4.4 (minor)Yann Collet2016-11-191-5/+5
|
* fix 32-bits mode.Yann Collet2016-11-171-9/+14
| | | | | | Large File support for Mac OS-X in 32-bits mode Fixed potential undefined behavior Changed makefile for 32-bits mode
* fixed sign conversion warningYann Collet2016-11-151-3/+2
|
* fixed minor coverity warningsYann Collet2016-11-151-3/+4
|
* silence a minor msan warningYann Collet2016-11-141-1/+2
|
* Fix license and remove references to zstdNick Terrell2016-11-111-4/+4
|
* changed FUZZER_TIMEPrzemyslaw Skibinski2016-11-101-1/+1
|
* fix empty bodyYann Collet2016-11-101-1/+1
|
* fixed some static analyzer warningYann Collet2016-11-101-50/+60
|
* fixed sparse on stdoutYann Collet2016-11-101-0/+1
|
* fixed multiples files on lz4cat (#184, by @libor-m)Yann Collet2016-11-101-29/+56
|
* fixed synthetic benchmark modeYann Collet2016-11-091-2/+2
| | | | slightly optimized test mode
* Fix #243 : detect and report fread() errors, by @iyokanYann Collet2016-11-071-10/+11
|
* added --rm optionPrzemyslaw Skibinski2016-11-071-26/+22
|
* Copy owner, file permissions and modification timePrzemyslaw Skibinski2016-11-071-8/+7
|
* Rename passThrough to testModeNick Terrell2016-11-041-6/+6
|
* Fix test mode and write to nullNick Terrell2016-11-031-2/+10
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Fix test mode to not always return success. Don't ask for permission to overwrite `nulmark`. Before: > echo "hello world" > file > lz4 -t file successfully decoded 12 bytes > lz4 -tf file successfully decoded 12 bytes > lz4 file null Warning : /dev/null already exists Overwrite ? (Y/n) : n Error 12 : No. Operation aborted : /dev/null already exists > lz4 file /dev/null Warning : /dev/null already exists Overwrite ? (Y/n) : n Error 12 : No. Operation aborted : /dev/null already exists After: > lz4 -t file Error 44 : Unrecognized header : file cannot be decoded > lz4 -tf file Error 44 : Unrecognized header : file cannot be decoded > lz4 file null Compressed 12 bytes into 31 bytes ==> 258.33% > lz4 file /dev/null Compressed 12 bytes into 31 bytes ==> 258.33%