Skip to content

Commit

Permalink
avcodec/pictordec: Fix logic error
Browse files Browse the repository at this point in the history
Fixes: 559/clusterfuzz-testcase-6424225917173760

Found-by: continuous fuzzing process https://github.com/google/oss-fuzz/tree/master/targets/ffmpeg
Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
  • Loading branch information
michaelni committed Feb 7, 2017
1 parent dface53 commit 8c2ea30
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion libavcodec/pictordec.c
Expand Up @@ -142,7 +142,7 @@ static int decode_frame(AVCodecContext *avctx,

if (av_image_check_size(s->width, s->height, 0, avctx) < 0)
return -1;
if (s->width != avctx->width && s->height != avctx->height) {
if (s->width != avctx->width || s->height != avctx->height) {
ret = ff_set_dimensions(avctx, s->width, s->height);
if (ret < 0)
return ret;
Expand Down

0 comments on commit 8c2ea30

Please sign in to comment.