summaryrefslogtreecommitdiffstats
path: root/lib
diff options
context:
space:
mode:
authorYann Collet <yann.collet.73@gmail.com>2016-06-29 13:53:21 (GMT)
committerYann Collet <yann.collet.73@gmail.com>2016-06-29 14:01:24 (GMT)
commitbc342ab94c9df9af8093d3b1c99be944b9685b9e (patch)
treef01c8946298e327b0259550bfa420304793c79de /lib
parentc8a573d32c3347285d09154ed6d1a55af52655bc (diff)
downloadlz4-bc342ab94c9df9af8093d3b1c99be944b9685b9e.zip
lz4-bc342ab94c9df9af8093d3b1c99be944b9685b9e.tar.gz
lz4-bc342ab94c9df9af8093d3b1c99be944b9685b9e.tar.bz2
minor refactoring
Diffstat (limited to 'lib')
-rw-r--r--lib/lz4.c19
1 files changed, 9 insertions, 10 deletions
diff --git a/lib/lz4.c b/lib/lz4.c
index ba8e462..646a13c 100644
--- a/lib/lz4.c
+++ b/lib/lz4.c
@@ -1150,8 +1150,7 @@ FORCE_INLINE int LZ4_decompress_generic(
if ((endOnInput) && (unlikely(outputSize==0))) return ((inputSize==1) && (*ip==0)) ? 0 : -1; /* Empty output buffer */
if ((!endOnInput) && (unlikely(outputSize==0))) return (*ip==0?1:-1);
-
- /* Main Loop */
+ /* Main Loop : decode sequences */
while (1) {
unsigned token;
size_t length;
@@ -1214,21 +1213,21 @@ FORCE_INLINE int LZ4_decompress_generic(
if (length <= (size_t)(lowPrefix-match)) {
/* match can be copied as a single segment from external dictionary */
- match = dictEnd - (lowPrefix-match);
- memmove(op, match, length); op += length;
+ memmove(op, dictEnd - (lowPrefix-match), length);
+ op += length;
} else {
/* match encompass external dictionary and current block */
- size_t copySize = (size_t)(lowPrefix-match);
+ size_t const copySize = (size_t)(lowPrefix-match);
+ size_t const restSize = length - copySize;
memcpy(op, dictEnd - copySize, copySize);
op += copySize;
- copySize = length - copySize;
- if (copySize > (size_t)(op-lowPrefix)) { /* overlap copy */
- BYTE* const endOfMatch = op + copySize;
+ if (restSize > (size_t)(op-lowPrefix)) { /* overlap copy */
+ BYTE* const endOfMatch = op + restSize;
const BYTE* copyFrom = lowPrefix;
while (op < endOfMatch) *op++ = *copyFrom++;
} else {
- memcpy(op, lowPrefix, copySize);
- op += copySize;
+ memcpy(op, lowPrefix, restSize);
+ op += restSize;
}
}
continue;