summaryrefslogtreecommitdiff
path: root/ffprobe.c
diff options
context:
space:
mode:
Diffstat (limited to 'ffprobe.c')
-rw-r--r--ffprobe.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/ffprobe.c b/ffprobe.c
index 9e5cd04101..31d1a4430a 100644
--- a/ffprobe.c
+++ b/ffprobe.c
@@ -141,10 +141,9 @@ static const char unit_bit_per_second_str[] = "bit/s";
static uint64_t *nb_streams_packets;
static uint64_t *nb_streams_frames;
-void av_noreturn exit_program(int ret)
+static void exit_program()
{
av_dict_free(&fmt_entries_to_show);
- exit(ret);
}
struct unit_value {
@@ -2093,6 +2092,8 @@ int main(int argc, char **argv)
int ret;
av_log_set_flags(AV_LOG_SKIP_REPEATED);
+ atexit(exit_program);
+
options = real_options;
parse_loglevel(argc, argv, options);
av_register_all();