[FFmpeg-cvslog] truemotion1: fix leaking frame on init failure
Andreas Cadhalpun
git at videolan.org
Tue Dec 6 00:05:32 EET 2016
ffmpeg | branch: master | Andreas Cadhalpun <Andreas.Cadhalpun at googlemail.com> | Mon Dec 5 21:41:06 2016 +0100| [46e75617d9700be8840a843237f8571061a63a8e] | committer: Andreas Cadhalpun
truemotion1: fix leaking frame on init failure
Reviewed-by: Michael Niedermayer <michael at niedermayer.cc>
Signed-off-by: Andreas Cadhalpun <Andreas.Cadhalpun at googlemail.com>
> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=46e75617d9700be8840a843237f8571061a63a8e
---
libavcodec/truemotion1.c | 4 +++-
1 file changed, 3 insertions(+), 1 deletion(-)
diff --git a/libavcodec/truemotion1.c b/libavcodec/truemotion1.c
index da843c4..c2022fb 100644
--- a/libavcodec/truemotion1.c
+++ b/libavcodec/truemotion1.c
@@ -489,8 +489,10 @@ static av_cold int truemotion1_decode_init(AVCodecContext *avctx)
/* there is a vertical predictor for each pixel in a line; each vertical
* predictor is 0 to start with */
av_fast_malloc(&s->vert_pred, &s->vert_pred_size, s->avctx->width * sizeof(unsigned int));
- if (!s->vert_pred)
+ if (!s->vert_pred) {
+ av_frame_free(&s->frame);
return AVERROR(ENOMEM);
+ }
return 0;
}
More information about the ffmpeg-cvslog
mailing list