mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2024-12-23 12:43:46 +02:00
Merge commit '62b1e3b1031e901105d78e831120de8e4c3e0013'
* commit '62b1e3b1031e901105d78e831120de8e4c3e0013': aasc: Check minimum buffer size Conflicts: libavcodec/aasc.c See:e1631f8ebe
See:8a57ca5c6a
Merged-by: Michael Niedermayer <michaelni@gmx.at>
This commit is contained in:
commit
0c6f382e85
@ -107,11 +107,9 @@ static int aasc_decode_frame(AVCodecContext *avctx,
|
|||||||
switch (compr) {
|
switch (compr) {
|
||||||
case 0:
|
case 0:
|
||||||
stride = (avctx->width * psize + psize) & ~psize;
|
stride = (avctx->width * psize + psize) & ~psize;
|
||||||
|
if (buf_size < stride * avctx->height)
|
||||||
|
return AVERROR_INVALIDDATA;
|
||||||
for (i = avctx->height - 1; i >= 0; i--) {
|
for (i = avctx->height - 1; i >= 0; i--) {
|
||||||
if (avctx->width * psize > buf_size) {
|
|
||||||
av_log(avctx, AV_LOG_ERROR, "Next line is beyond buffer bounds\n");
|
|
||||||
break;
|
|
||||||
}
|
|
||||||
memcpy(s->frame->data[0] + i * s->frame->linesize[0], buf, avctx->width * psize);
|
memcpy(s->frame->data[0] + i * s->frame->linesize[0], buf, avctx->width * psize);
|
||||||
buf += stride;
|
buf += stride;
|
||||||
buf_size -= stride;
|
buf_size -= stride;
|
||||||
|
Loading…
Reference in New Issue
Block a user