minor refactor
This commit is contained in:
parent
a7672dc4f9
commit
9578ff539d
@ -1237,11 +1237,9 @@ FORCE_INLINE int LZ4_decompress_generic(
|
||||
op = oCopyLimit;
|
||||
}
|
||||
while (op<cpy) *op++ = *match++;
|
||||
}
|
||||
else {
|
||||
} else {
|
||||
LZ4_copy8(op, match);
|
||||
if (length>16)
|
||||
LZ4_wildCopy(op+8, match+8, cpy);
|
||||
if (length>16) LZ4_wildCopy(op+8, match+8, cpy);
|
||||
}
|
||||
op=cpy; /* correction */
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user