Browse Source

avcodec/rawdec: check for side data before checking its size

Fixes valgrind warnings about usage of uninitialized values.

Reviewed-by: Michael Niedermayer <michael@niedermayer.cc>
Signed-off-by: James Almer <jamrial@gmail.com>
tags/n3.3
James Almer 8 years ago
parent
commit
51e329918d
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      libavcodec/rawdec.c

+ 1
- 1
libavcodec/rawdec.c View File

@@ -369,7 +369,7 @@ static int raw_decode(AVCodecContext *avctx, void *data, int *got_frame,
&pal_size);
int ret;

if (pal_size != AVPALETTE_SIZE) {
if (pal && pal_size != AVPALETTE_SIZE) {
av_log(avctx, AV_LOG_ERROR, "Palette size %d is wrong\n", pal_size);
pal = NULL;
}


Loading…
Cancel
Save