On Wed, Jan 31, 2018 at 19:20:08 +0100, Michael Niedermayer wrote:
> @@ -1458,8 +1465,10 @@ static int decode_header(EXRContext *s, AVFrame *frame)
>
> s->channels = av_realloc(s->channels,
> ++s->nb_channels *
> sizeof(EXRChannel));
> - if (!s->channels)
> - return AVERROR(ENOMEM);
> + if (!s->channels) {
> + ret = AVERROR(ENOMEM);;
^^
Duplicate semicolon. This should have given you a new warning.
Moritz
_______________________________________________
ffmpeg-devel mailing list
[email protected]
http://ffmpeg.org/mailman/listinfo/ffmpeg-devel