diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2015-05-15 15:23:32 +0200 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2015-05-15 16:30:11 +0200 |
commit | 03377703525a3ec86d6b8cb5f8ef75e6851f914c (patch) | |
tree | 66e28b92c624bac73955560da1aebc95661b403b | |
parent | ab8f686bbc8ac682417ad275ae3c35245283ef0f (diff) | |
download | ffmpeg-03377703525a3ec86d6b8cb5f8ef75e6851f914c.tar.gz |
avcodec/proresdec2: Reset slice_count on deallocation
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
(cherry picked from commit c4c6aea397f62421bf8ef0449b2b465a53e4ab4d)
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
-rw-r--r-- | libavcodec/proresdec2.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/libavcodec/proresdec2.c b/libavcodec/proresdec2.c index 4d04a0ad85..a1d497f049 100644 --- a/libavcodec/proresdec2.c +++ b/libavcodec/proresdec2.c @@ -183,6 +183,7 @@ static int decode_picture_header(AVCodecContext *avctx, const uint8_t *buf, cons if (ctx->slice_count != slice_count || !ctx->slices) { av_freep(&ctx->slices); + ctx->slice_count = 0; ctx->slices = av_mallocz_array(slice_count, sizeof(*ctx->slices)); if (!ctx->slices) return AVERROR(ENOMEM); |