diff options
author | Vittorio Giovara <vittorio.giovara@gmail.com> | 2015-03-11 19:24:59 +0000 |
---|---|---|
committer | Vittorio Giovara <vittorio.giovara@gmail.com> | 2015-03-12 15:29:59 +0000 |
commit | 5a2645cafeca1c2207ac55cc831c3349572a82ed (patch) | |
tree | c919f161f61113303571da96edc9c3555a59c24c /libavformat | |
parent | edca1dd552efa1ebef016ca9eff4ce6757605819 (diff) | |
download | ffmpeg-5a2645cafeca1c2207ac55cc831c3349572a82ed.tar.gz |
nutdec: Prevent leaks on memory error
Bug-Id: CID 205122 / CID 205123
Diffstat (limited to 'libavformat')
-rw-r--r-- | libavformat/nutdec.c | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/libavformat/nutdec.c b/libavformat/nutdec.c index 87d29f1cc4..71eaba4b1f 100644 --- a/libavformat/nutdec.c +++ b/libavformat/nutdec.c @@ -615,8 +615,10 @@ static int find_and_decode_index(NUTContext *nut) GET_V(syncpoint_count, tmp < INT_MAX / 8 && tmp > 0); syncpoints = av_malloc(sizeof(int64_t) * syncpoint_count); has_keyframe = av_malloc(sizeof(int8_t) * (syncpoint_count + 1)); - if (!syncpoints || !has_keyframe) - return AVERROR(ENOMEM); + if (!syncpoints || !has_keyframe) { + ret = AVERROR(ENOMEM); + goto fail; + } for (i = 0; i < syncpoint_count; i++) { syncpoints[i] = ffio_read_varlen(bc); if (syncpoints[i] <= 0) |