diff --git a/libavcodec/mjpegdec.c b/libavcodec/mjpegdec.c index 3042eb3399..fc428df241 100644 --- a/libavcodec/mjpegdec.c +++ b/libavcodec/mjpegdec.c @@ -303,8 +303,8 @@ int ff_mjpeg_decode_sof(MJpegDecodeContext *s) /* if different size, realloc/alloc picture */ if ( width != s->width || height != s->height - || memcmp(s->h_count, h_count, sizeof(h_count[0])*nb_components) - || memcmp(s->v_count, v_count, sizeof(v_count[0])*nb_components)) { + || memcmp(s->h_count, h_count, sizeof(h_count)) + || memcmp(s->v_count, v_count, sizeof(v_count))) { av_freep(&s->qscale_table); s->width = width;