diff options
author | Yann Collet <yann.collet.73@gmail.com> | 2014-12-16 01:13:19 (GMT) |
---|---|---|
committer | Yann Collet <yann.collet.73@gmail.com> | 2014-12-16 01:13:19 (GMT) |
commit | 95cc6cef6444b202a93ba414b7a9996eb2c72ca3 (patch) | |
tree | 3a2a7c48aa32847b5e132ba815609b427bdfbb7f /lib/lz4.c | |
parent | 7a8cd6996072f53f83ded52a325a4c4a4aed5a35 (diff) | |
download | lz4-95cc6cef6444b202a93ba414b7a9996eb2c72ca3.zip lz4-95cc6cef6444b202a93ba414b7a9996eb2c72ca3.tar.gz lz4-95cc6cef6444b202a93ba414b7a9996eb2c72ca3.tar.bz2 |
Fixed : bug within LZ4 HC streaming mode, reported by James Boyle
Diffstat (limited to 'lib/lz4.c')
-rw-r--r-- | lib/lz4.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -541,7 +541,7 @@ static int LZ4_compress_generic( break; } if ((tableType == byU16) && (inputSize>=LZ4_64Klimit)) return 0; /* Size too large (not within 64K limit) */ - if (inputSize<LZ4_minLength) goto _last_literals; /* Input too small, no compression (all literals) */ + if (inputSize<LZ4_minLength) goto _last_literals; /* Input too small, no compression (all literals) */ /* First Byte */ LZ4_putPosition(ip, ctx, tableType, base); |