diff options
author | Justin Ruggles <justin.ruggles@gmail.com> | 2012-02-15 19:26:09 -0500 |
---|---|---|
committer | Justin Ruggles <justin.ruggles@gmail.com> | 2012-02-25 11:49:41 -0500 |
commit | a8bdf2405c6027f45a899eaaa6ba74e97c1c2701 (patch) | |
tree | 0538bf58d2aca6d32b0dc45f5b2806b330b9898a /libavcodec/roqaudioenc.c | |
parent | 255ad8881db0fa937e3632c4937f23d29d0e423d (diff) | |
download | ffmpeg-a8bdf2405c6027f45a899eaaa6ba74e97c1c2701.tar.gz |
check for coded_frame allocation failure in several audio encoders
Diffstat (limited to 'libavcodec/roqaudioenc.c')
-rw-r--r-- | libavcodec/roqaudioenc.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/libavcodec/roqaudioenc.c b/libavcodec/roqaudioenc.c index e2d0f3896e..3747f18c1b 100644 --- a/libavcodec/roqaudioenc.c +++ b/libavcodec/roqaudioenc.c @@ -59,6 +59,8 @@ static av_cold int roq_dpcm_encode_init(AVCodecContext *avctx) context->lastSample[0] = context->lastSample[1] = 0; avctx->coded_frame= avcodec_alloc_frame(); + if (!avctx->coded_frame) + return AVERROR(ENOMEM); return 0; } |