1
0
mirror of https://github.com/FFmpeg/FFmpeg.git synced 2025-08-15 14:13:16 +02:00

avcodec/libtheoraenc: Check for av_malloc failure

Fixes CID1257799

Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
This commit is contained in:
Michael Niedermayer
2015-05-15 22:02:12 +02:00
parent e6ec65d2d3
commit c64b2d480b

View File

@@ -111,6 +111,8 @@ static int get_stats(AVCodecContext *avctx, int eos)
// libtheora generates a summary header at the end // libtheora generates a summary header at the end
memcpy(h->stats, buf, bytes); memcpy(h->stats, buf, bytes);
avctx->stats_out = av_malloc(b64_size); avctx->stats_out = av_malloc(b64_size);
if (!avctx->stats_out)
return AVERROR(ENOMEM);
av_base64_encode(avctx->stats_out, b64_size, h->stats, h->stats_offset); av_base64_encode(avctx->stats_out, b64_size, h->stats, h->stats_offset);
} }
return 0; return 0;