You've already forked FFmpeg
mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2025-08-10 06:10:52 +02:00
avcodec/pngdec: Fix () placement
Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
This commit is contained in:
@@ -858,7 +858,7 @@ static int decode_iccp_chunk(PNGDecContext *s, int length, AVFrame *f)
|
||||
|
||||
length = FFMAX(length - 1, 0);
|
||||
|
||||
if ((ret = decode_zbuf(&bp, s->gb.buffer, s->gb.buffer + length) < 0))
|
||||
if ((ret = decode_zbuf(&bp, s->gb.buffer, s->gb.buffer + length)) < 0)
|
||||
return ret;
|
||||
|
||||
av_bprint_finalize(&bp, (char **)&data);
|
||||
|
Reference in New Issue
Block a user