mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2024-12-23 12:43:46 +02:00
qpeg: Add checks for running out of rows in qpeg_decode_inter
Reported-by: Mateusz "j00ru" Jurczyk and Gynvael Coldwind CC: libav-stable@libav.org Signed-off-by: Martin Storsjö <martin@martin.st>
This commit is contained in:
parent
e9d61de96c
commit
7a5a557227
@ -191,6 +191,8 @@ static void qpeg_decode_inter(QpegContext *qctx, uint8_t *dst,
|
|||||||
filled = 0;
|
filled = 0;
|
||||||
dst -= stride;
|
dst -= stride;
|
||||||
height--;
|
height--;
|
||||||
|
if (height < 0)
|
||||||
|
break;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
} else if(code >= 0xC0) { /* copy code: 0xC0..0xDF */
|
} else if(code >= 0xC0) { /* copy code: 0xC0..0xDF */
|
||||||
@ -202,6 +204,8 @@ static void qpeg_decode_inter(QpegContext *qctx, uint8_t *dst,
|
|||||||
filled = 0;
|
filled = 0;
|
||||||
dst -= stride;
|
dst -= stride;
|
||||||
height--;
|
height--;
|
||||||
|
if (height < 0)
|
||||||
|
break;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
} else if(code >= 0x80) { /* skip code: 0x80..0xBF */
|
} else if(code >= 0x80) { /* skip code: 0x80..0xBF */
|
||||||
|
Loading…
Reference in New Issue
Block a user