forked from FFmpeg/FFmpeg
Merge remote-tracking branch 'qatar/master'
* qatar/master: 8bps: Make the bound-checks consistent Conflicts: libavcodec/8bps.c Merged-by: Michael Niedermayer <michaelni@gmx.at>
This commit is contained in:
commit
7dec8512be
1 changed files with 2 additions and 2 deletions
|
@ -96,7 +96,7 @@ static int decode_frame(AVCodecContext *avctx, void *data,
|
|||
if ((count = *dp++) <= 127) {
|
||||
count++;
|
||||
dlen -= count + 1;
|
||||
if (pixptr + count * planes > pixptr_end)
|
||||
if (pixptr_end - pixptr < count * planes)
|
||||
break;
|
||||
if (ep - dp < count)
|
||||
return AVERROR_INVALIDDATA;
|
||||
|
@ -106,7 +106,7 @@ static int decode_frame(AVCodecContext *avctx, void *data,
|
|||
}
|
||||
} else {
|
||||
count = 257 - count;
|
||||
if (pixptr + count * planes > pixptr_end)
|
||||
if (pixptr_end - pixptr < count * planes)
|
||||
break;
|
||||
while (count--) {
|
||||
*pixptr = *dp;
|
||||
|
|
Loading…
Add table
Reference in a new issue