Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | LZ4_compress_HC_destSize() uses LZ4HC_compress_generic() code path | Yann Collet | 2017-03-16 | 1 | -1/+1 |
| | | | | | Limits compression level to 10, to remain compatible with Hash Chain. | ||||
* | fixed Visual compilation error | Yann Collet | 2017-03-16 | 1 | -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 permissions | Yann Collet | 2017-03-16 | 1 | -37/+31 |
| | |||||
* | Avoid fseek()'s 2GiB barrier with MinGW | Przemyslaw Skibinski | 2017-02-15 | 1 | -16/+5 |
| | |||||
* | use FindFirstFileA and FindNextFileA on Windows | Przemyslaw Skibinski | 2016-12-22 | 1 | -1/+1 |
| | |||||
* | improved comments | Przemyslaw Skibinski | 2016-12-21 | 1 | -1/+1 |
| | |||||
* | use fseeko for 32-bit MacOS | Przemyslaw Skibinski | 2016-12-21 | 1 | -3/+1 |
| | |||||
* | test Large File support for Mac OS-X in 32-bits mode | Przemyslaw Skibinski | 2016-12-21 | 1 | -2/+11 |
| | |||||
* | util.h and platform.h based on zstd | Przemyslaw Skibinski | 2016-12-21 | 1 | -1/+5 |
| | |||||
* | fixed Visual Studio compilation | Przemyslaw Skibinski | 2016-12-21 | 1 | -0/+8 |
| | |||||
* | improved MinGW support | Przemyslaw Skibinski | 2016-12-21 | 1 | -6/+0 |
| | |||||
* | improved formatting (2) | Przemyslaw Skibinski | 2016-12-20 | 1 | -0/+2 |
| | |||||
* | fixed gcc warnings (2) | Przemyslaw Skibinski | 2016-12-20 | 1 | -1/+3 |
| | |||||
* | improved platform.h | Przemyslaw Skibinski | 2016-12-20 | 1 | -2/+2 |
| | |||||
* | executables use platform.h | Przemyslaw Skibinski | 2016-12-20 | 1 | -31/+2 |
| | |||||
* | 15-bit LZ4HC_HASH_LOG | Przemyslaw Skibinski | 2016-12-07 | 1 | -1/+2 |
| | |||||
* | fixed gcc warnings | Przemyslaw Skibinski | 2016-12-07 | 1 | -1/+1 |
| | |||||
* | fixed LZ4IO_compressMultipleFilenames | Przemyslaw Skibinski | 2016-11-22 | 1 | -3/+5 |
| | |||||
* | added a few dates | Yann Collet | 2016-11-21 | 1 | -1/+1 |
| | |||||
* | fixed : shadow global variable on gcc 4.4 (minor) | Yann Collet | 2016-11-19 | 1 | -5/+5 |
| | |||||
* | fix 32-bits mode. | Yann Collet | 2016-11-17 | 1 | -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 warning | Yann Collet | 2016-11-15 | 1 | -3/+2 |
| | |||||
* | fixed minor coverity warnings | Yann Collet | 2016-11-15 | 1 | -3/+4 |
| | |||||
* | silence a minor msan warning | Yann Collet | 2016-11-14 | 1 | -1/+2 |
| | |||||
* | Fix license and remove references to zstd | Nick Terrell | 2016-11-11 | 1 | -4/+4 |
| | |||||
* | changed FUZZER_TIME | Przemyslaw Skibinski | 2016-11-10 | 1 | -1/+1 |
| | |||||
* | fix empty body | Yann Collet | 2016-11-10 | 1 | -1/+1 |
| | |||||
* | fixed some static analyzer warning | Yann Collet | 2016-11-10 | 1 | -50/+60 |
| | |||||
* | fixed sparse on stdout | Yann Collet | 2016-11-10 | 1 | -0/+1 |
| | |||||
* | fixed multiples files on lz4cat (#184, by @libor-m) | Yann Collet | 2016-11-10 | 1 | -29/+56 |
| | |||||
* | fixed synthetic benchmark mode | Yann Collet | 2016-11-09 | 1 | -2/+2 |
| | | | | slightly optimized test mode | ||||
* | Fix #243 : detect and report fread() errors, by @iyokan | Yann Collet | 2016-11-07 | 1 | -10/+11 |
| | |||||
* | added --rm option | Przemyslaw Skibinski | 2016-11-07 | 1 | -26/+22 |
| | |||||
* | Copy owner, file permissions and modification time | Przemyslaw Skibinski | 2016-11-07 | 1 | -8/+7 |
| | |||||
* | Rename passThrough to testMode | Nick Terrell | 2016-11-04 | 1 | -6/+6 |
| | |||||
* | Fix test mode and write to null | Nick Terrell | 2016-11-03 | 1 | -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% | ||||
* | Merge pull request #249 from inikep/dev | Yann Collet | 2016-11-03 | 1 | -1/+1 |
|\ | | | | | Dev | ||||
| * | updated links to LZ4 repository | Przemyslaw Skibinski | 2016-11-03 | 1 | -1/+1 |
| | | |||||
* | | fixed clang conversion warning | Yann Collet | 2016-11-03 | 1 | -1/+1 |
| | | |||||
* | | check fread() operation results (#243) | Yann Collet | 2016-11-03 | 1 | -9/+16 |
|/ | |||||
* | fix for ARM platform | Yann Collet | 2016-11-02 | 1 | -2/+2 |
| | |||||
* | moved cmake and debian directories to contrib (#245) | Yann Collet | 2016-11-02 | 1 | -5/+5 |
| | |||||
* | fixed #247, reported by Felix Bolte | Yann Collet | 2016-11-01 | 1 | -205/+144 |
| | |||||
* | Use lower case for header file name | Kouhei Sutou | 2016-09-22 | 1 | -1/+1 |
| | | | | | | "WinIoCtl.h" works on Windows because Windows uses case insensitive file system. But it doesn't work on GNU/Linux (for cross compiling with MinGW) because GNU/Linux uses case sensitive file system. | ||||
* | remove EnablePREfast=true for Win32 | inikep | 2016-09-02 | 1 | -0/+1 |
| | |||||
* | fix mingw64 compilation warnings | inikep | 2016-09-02 | 1 | -0/+3 |
| | |||||
* | Fix build error on MinGW | Kouhei Sutou | 2016-01-10 | 1 | -1/+1 |
| | | | | | Header file name is case insensitive on Windows but it is case sensitive on Linux. "Windows.h" can't be found on Linux. | ||||
* | Fixed a few minor visual analyzer warnings | Yann Collet | 2015-06-29 | 1 | -1/+1 |
| | |||||
* | removed one malloc | Yann Collet | 2015-06-29 | 1 | -5/+6 |
| | |||||
* | lz4io : removed one malloc | Yann Collet | 2015-06-29 | 1 | -3/+4 |
| |