[FFmpeg-cvslog] avcodec/proresdec2: Reset slice_count on deallocation

Michael Niedermayer git at videolan.org
Thu May 21 21:26:08 CEST 2015


ffmpeg | branch: release/2.5 | Michael Niedermayer <michaelni at gmx.at> | Fri May 15 15:23:32 2015 +0200| [c14359f24d612e4de7ac4c47c47965ec01bedb9b] | committer: Michael Niedermayer

avcodec/proresdec2: Reset slice_count on deallocation

Signed-off-by: Michael Niedermayer <michaelni at gmx.at>
(cherry picked from commit c4c6aea397f62421bf8ef0449b2b465a53e4ab4d)

Signed-off-by: Michael Niedermayer <michaelni at gmx.at>

> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=c14359f24d612e4de7ac4c47c47965ec01bedb9b
---

 libavcodec/proresdec2.c |    1 +
 1 file changed, 1 insertion(+)

diff --git a/libavcodec/proresdec2.c b/libavcodec/proresdec2.c
index 4d04a0a..a1d497f 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);



More information about the ffmpeg-cvslog mailing list