1
0
mirror of https://github.com/FFmpeg/FFmpeg.git synced 2025-01-08 13:22:53 +02:00

ffprobe: prefer av_freep() over av_free() for global print_format option.

It could be re-used for instance in case ffprobe would support multiple
input files.
This commit is contained in:
Clément Bœsch 2011-10-18 19:09:40 +02:00
parent f4eeb000bf
commit 2f468826ee

View File

@ -842,7 +842,7 @@ static int probe_file(const char *filename)
writer_close(&wctx);
end:
av_free(print_format);
av_freep(&print_format);
return ret;
}