Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | 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 |
| | |||||
* | Merge pull request #114 from lpsantil/djgpp | Yann Collet | 2015-05-28 | 1 | -5/+10 |
|\ | | | | | Djgpp | ||||
| * | Fixup programs/{Makefile,lz4cli.c,lz4io.c} to build with Andrew Wu's ↵ | Louis P. Santillan | 2015-05-26 | 1 | -5/+10 |
| | | | | | | | | build-djgpp cross compilers. Add some documentation in README.DJ | ||||
* | | Fixed : default sparse mode disabled on stdout, to support ` >>` ↵ | Yann Collet | 2015-05-25 | 1 | -9/+7 |
| | | | | | | | | redirection scenario reported by Takayuki Matsuoka (#110) | ||||
* | | Fixed : LZ4IO exits too early when frame crc not present, reported by ↵ | Yann Collet | 2015-05-20 | 1 | -1/+2 |
| | | | | | | | | Yongwoon Cho (#106) | ||||
* | | minor test refactor | Yann Collet | 2015-05-18 | 1 | -2/+3 |
| | | |||||
* | | Fixed sparse issue with non seekable streams (#105) | Yann Collet | 2015-05-18 | 1 | -6/+12 |
|/ | |||||
* | Added compilation flag -Wcast-qual | Yann Collet | 2015-05-06 | 1 | -4/+4 |
| | |||||
* | Updated lz4hc API | Yann Collet | 2015-05-03 | 1 | -1/+1 |
| | |||||
* | New lz4 API, using LZ4_compress_fast() | Yann Collet | 2015-05-03 | 1 | -1/+1 |
| | |||||
* | streaming API : Improved ring buffer management | Yann Collet | 2015-04-24 | 1 | -18/+16 |
| | |||||
* | Removed obsolete functions from lz4 cli | Yann Collet | 2015-04-21 | 1 | -3/+9 |
| | |||||
* | Removed LZ4_compress() (obsolete) from lz4 | Yann Collet | 2015-04-21 | 1 | -6/+6 |
| | |||||
* | Fixed frame concatenation | Yann Collet | 2015-04-20 | 1 | -3/+5 |
| | |||||
* | Fixed unfinished frame (issue #75) | Yann Collet | 2015-04-20 | 1 | -8/+13 |
| | |||||
* | Sparse file support is now enabled by default | Yann Collet | 2015-04-17 | 1 | -1/+1 |
| | |||||
* | Reclassified some notification messages as errors | Yann Collet | 2015-04-16 | 1 | -2/+2 |
| | |||||
* | stronger arm tests | Yann Collet | 2015-04-16 | 1 | -2/+2 |
| | |||||
* | fix minor "divide by zero" risk | Yann Collet | 2015-04-16 | 1 | -1/+2 |
| |