LZVN icon indicating copy to clipboard operation
LZVN copied to clipboard

Case LZVN_7

Open pruten opened this issue 10 years ago • 0 comments

In case LZVN_7,

compBufferPointer = length;
compBufferPointer -= negativeOffset;  // sub %r12,%r8
if (compBufferPointer < negativeOffset) // jb Llzvn_exit
{
    return 0;
}

The condition should probably be

if (length < negativeOffset)

since compBufferPointer has already been modified.

pruten avatar Dec 12 '14 05:12 pruten