[FFmpeg-cvslog] iff: fix null ptr dereference

Michael Niedermayer git at videolan.org
Sun Apr 22 20:26:53 CEST 2012


ffmpeg | branch: master | Michael Niedermayer <michaelni at gmx.at> | Sun Apr 22 16:41:21 2012 +0200| [41abc9da50ba7a7b68bbbf6622475ce7a3c72e3f] | committer: Michael Niedermayer

iff: fix null ptr dereference

Found-by: Mateusz "j00ru" Jurczyk and Gynvael Coldwind
Signed-off-by: Michael Niedermayer <michaelni at gmx.at>

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

 libavcodec/iff.c |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/libavcodec/iff.c b/libavcodec/iff.c
index 841dff6..0a4a983 100644
--- a/libavcodec/iff.c
+++ b/libavcodec/iff.c
@@ -474,7 +474,7 @@ static int decode_frame_ilbm(AVCodecContext *avctx,
     } else if ((res = avctx->get_buffer(avctx, &s->frame)) < 0) {
         av_log(avctx, AV_LOG_ERROR, "get_buffer() failed\n");
         return res;
-    } else if (avctx->bits_per_coded_sample <= 8 && avctx->pix_fmt != PIX_FMT_GRAY8) {
+    } else if (avctx->bits_per_coded_sample <= 8 && avctx->pix_fmt == PIX_FMT_PAL8) {
         if ((res = ff_cmap_read_palette(avctx, (uint32_t*)s->frame.data[1])) < 0)
             return res;
     }



More information about the ffmpeg-cvslog mailing list