summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorYann Collet <Cyan4973@users.noreply.github.com>2019-08-10 00:08:03 (GMT)
committerGitHub <noreply@github.com>2019-08-10 00:08:03 (GMT)
commitdfad84ca3eca2fb89a1cdb5adf829975035827d5 (patch)
tree9af7fb7a0b32809791cad70c12eda3dc9ccb48c7
parent1bcde6414a68094601ecd57a968808fdd43fb986 (diff)
parentd7cad81093cd805110291f84d64d385557d0ffba (diff)
downloadlz4-dfad84ca3eca2fb89a1cdb5adf829975035827d5.zip
lz4-dfad84ca3eca2fb89a1cdb5adf829975035827d5.tar.gz
lz4-dfad84ca3eca2fb89a1cdb5adf829975035827d5.tar.bz2
Merge pull request #777 from terrelln/off-by-one
[LZ4_compress_destSize] Fix off-by-one error
-rw-r--r--lib/lz4.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/lz4.c b/lib/lz4.c
index 877d14e..9808d70 100644
--- a/lib/lz4.c
+++ b/lib/lz4.c
@@ -1040,7 +1040,7 @@ _next_match:
ip -= matchCode - newMatchCode;
assert(newMatchCode < matchCode);
matchCode = newMatchCode;
- if (unlikely(ip < filledIp)) {
+ if (unlikely(ip <= filledIp)) {
/* We have already filled up to filledIp so if ip ends up less than filledIp
* we have positions in the hash table beyond the current position. This is
* a problem if we reuse the hash table. So we have to remove these positions