Fixes Coverity issue #1539097.
Signed-off-by: Andreas Rheinhardt <[email protected]>
---
fftools/ffmpeg_opt.c | 10 ++++++----
1 file changed, 6 insertions(+), 4 deletions(-)
diff --git a/fftools/ffmpeg_opt.c b/fftools/ffmpeg_opt.c
index 700db706a1..f7606ae6f6 100644
--- a/fftools/ffmpeg_opt.c
+++ b/fftools/ffmpeg_opt.c
@@ -497,7 +497,7 @@ static int opt_map_channel(void *optctx, const char *opt,
const char *arg)
ret = GROW_ARRAY(o->audio_channel_maps, o->nb_audio_channel_maps);
if (ret < 0)
- return ret;
+ goto end;
m = &o->audio_channel_maps[o->nb_audio_channel_maps - 1];
@@ -559,11 +559,13 @@ static int opt_map_channel(void *optctx, const char *opt,
const char *arg)
}
}
+ ret = 0;
+end:
av_free(mapchan);
- return 0;
+ return ret;
fail:
- av_free(mapchan);
- return AVERROR(EINVAL);
+ ret = AVERROR(EINVAL);
+ goto end;
}
#endif
--
2.34.1
_______________________________________________
ffmpeg-devel mailing list
[email protected]
https://ffmpeg.org/mailman/listinfo/ffmpeg-devel
To unsubscribe, visit link above, or email
[email protected] with subject "unsubscribe".