[FFmpeg-devel] [PATCH] fftools/ffprobe: fix handling parse_options() return value
Anton Khirnov
anton at khirnov.net
Wed Jul 26 18:31:38 EEST 2023
---
fftools/ffprobe.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/fftools/ffprobe.c b/fftools/ffprobe.c
index a39185f6fe..81610c097b 100644
--- a/fftools/ffprobe.c
+++ b/fftools/ffprobe.c
@@ -4113,7 +4113,7 @@ int main(int argc, char **argv)
show_banner(argc, argv, options);
ret = parse_options(NULL, argc, argv, options, opt_input_file);
if (ret < 0) {
- ret = AVERROR_EXIT ? 0 : ret;
+ ret = (ret == AVERROR_EXIT) ? 0 : ret;
goto end;
}
--
2.40.1
More information about the ffmpeg-devel
mailing list