diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2015-04-13 19:59:41 +0200 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2015-04-13 19:59:41 +0200 |
commit | fb6dd77000f1ad6740494269f55a0ff21df5bcf2 (patch) | |
tree | 35c3a454ba49c5229bb894de0e6b90c7c50c6fcd | |
parent | f4f3065c69cefd916c92ee2a8758bac799a30c00 (diff) | |
parent | 73dacabfc9b9ef1fd2c08105fdab6238ee29c2fc (diff) | |
download | ffmpeg-fb6dd77000f1ad6740494269f55a0ff21df5bcf2.tar.gz |
Merge commit '73dacabfc9b9ef1fd2c08105fdab6238ee29c2fc'
* commit '73dacabfc9b9ef1fd2c08105fdab6238ee29c2fc':
ffv1: Check memory allocations
Conflicts:
libavcodec/ffv1.c
Merged-by: Michael Niedermayer <michaelni@gmx.at>
-rw-r--r-- | libavcodec/ffv1.c | 19 |
1 files changed, 14 insertions, 5 deletions
diff --git a/libavcodec/ffv1.c b/libavcodec/ffv1.c index ab58a6074f..20d20cce2e 100644 --- a/libavcodec/ffv1.c +++ b/libavcodec/ffv1.c @@ -111,22 +111,22 @@ av_cold int ffv1_init_slices_state(FFV1Context *f) av_cold int ffv1_init_slice_contexts(FFV1Context *f) { - int i; + int i, j; f->slice_count = f->num_h_slices * f->num_v_slices; av_assert0(f->slice_count > 0); for (i = 0; i < f->slice_count; i++) { - FFV1Context *fs = av_mallocz(sizeof(*fs)); int sx = i % f->num_h_slices; int sy = i / f->num_h_slices; int sxs = f->avctx->width * sx / f->num_h_slices; int sxe = f->avctx->width * (sx + 1) / f->num_h_slices; int sys = f->avctx->height * sy / f->num_v_slices; int sye = f->avctx->height * (sy + 1) / f->num_v_slices; + FFV1Context *fs = av_mallocz(sizeof(*fs)); if (!fs) - return AVERROR(ENOMEM); + goto memfail; f->slice_context[i] = fs; memcpy(fs, f, sizeof(*fs)); @@ -139,10 +139,19 @@ av_cold int ffv1_init_slice_contexts(FFV1Context *f) fs->sample_buffer = av_malloc_array((fs->width + 6), 3 * MAX_PLANES * sizeof(*fs->sample_buffer)); - if (!fs->sample_buffer) - return AVERROR(ENOMEM); + if (!fs->sample_buffer) { + av_free(fs); + goto memfail; + } } return 0; + +memfail: + for (j = 0; j < i; j++) { + av_free(&f->slice_context[j]->sample_buffer); + av_free(&f->slice_context[j]); + } + return AVERROR(ENOMEM); } int ffv1_allocate_initial_states(FFV1Context *f) |