Browse Source

libtheora: Check frame allocation

tags/n2.7
Vittorio Giovara 10 years ago
parent
commit
17c45d4d05
1 changed files with 2 additions and 0 deletions
  1. +2
    -0
      libavcodec/libtheoraenc.c

+ 2
- 0
libavcodec/libtheoraenc.c View File

@@ -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