Commit ebe3a41e authored by Michael Niedermayer's avatar Michael Niedermayer

avcodec/dvbsubdec: Add some av_malloc() failure checks

Signed-off-by: 's avatarMichael Niedermayer <michaelni@gmx.at>
parent a4d3cf10
......@@ -1082,6 +1082,8 @@ static int dvbsub_parse_clut_segment(AVCodecContext *avctx,
if (!clut) {
clut = av_malloc(sizeof(DVBSubCLUT));
if (!clut)
return AVERROR(ENOMEM);
memcpy(clut, &default_clut, sizeof(DVBSubCLUT));
......@@ -1169,6 +1171,8 @@ static void dvbsub_parse_region_segment(AVCodecContext *avctx,
if (!region) {
region = av_mallocz(sizeof(DVBSubRegion));
if (!region)
return;
region->id = region_id;
region->version = -1;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment