Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/FFmpeg/FFmpeg.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJustin Ruggles <justin.ruggles@gmail.com>2012-02-16 04:26:09 +0400
committerJustin Ruggles <justin.ruggles@gmail.com>2012-02-25 20:49:41 +0400
commita8bdf2405c6027f45a899eaaa6ba74e97c1c2701 (patch)
tree0538bf58d2aca6d32b0dc45f5b2806b330b9898a /libavcodec/libgsm.c
parent255ad8881db0fa937e3632c4937f23d29d0e423d (diff)
check for coded_frame allocation failure in several audio encoders
Diffstat (limited to 'libavcodec/libgsm.c')
-rw-r--r--libavcodec/libgsm.c4
1 files changed, 4 insertions, 0 deletions
diff --git a/libavcodec/libgsm.c b/libavcodec/libgsm.c
index b917cc374d..fb7b196022 100644
--- a/libavcodec/libgsm.c
+++ b/libavcodec/libgsm.c
@@ -70,6 +70,10 @@ static av_cold int libgsm_encode_init(AVCodecContext *avctx) {
}
avctx->coded_frame= avcodec_alloc_frame();
+ if (!avctx->coded_frame) {
+ gsm_destroy(avctx->priv_data);
+ return AVERROR(ENOMEM);
+ }
return 0;
}