From: Nick Terrell Date: Wed, 17 Jul 2019 18:50:47 +0000 (-0700) Subject: [LZ4_compress_destSize] Fix overflow condition X-Git-Tag: upstream/1.9.3~2^2~11^2 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=13a2d9e34ffc4170720ce417c73e396d0ac1471a;p=platform%2Fupstream%2Flz4.git [LZ4_compress_destSize] Fix overflow condition --- diff --git a/lib/lz4.c b/lib/lz4.c index 461644d..74a9247 100644 --- a/lib/lz4.c +++ b/lib/lz4.c @@ -1027,7 +1027,7 @@ _next_match: } if ((outputDirective) && /* Check output buffer overflow */ - (unlikely(op + (1 + LASTLITERALS) + (matchCode>>8) > olimit)) ) { + (unlikely(op + (1 + LASTLITERALS) + (matchCode+240)/255 > olimit)) ) { if (outputDirective == fillOutput) { /* Match description too long : reduce it */ U32 newMatchCode = 15 /* in token */ - 1 /* to avoid needing a zero byte */ + ((U32)(olimit - op) - 1 - LASTLITERALS) * 255;