libtheora: Check frame allocation

pull/125/head
Vittorio Giovara 10 years ago
parent a72d93daa0
commit 17c45d4d05
  1. 2
      libavcodec/libtheoraenc.c

@ -260,6 +260,8 @@ static av_cold int encode_init(AVCodecContext* avc_context)
/* Set up the output AVFrame */
avc_context->coded_frame = av_frame_alloc();
if (!avc_context->coded_frame)
return AVERROR(ENOMEM);
return 0;
}

Loading…
Cancel
Save