This website works better with JavaScript.
Home
Help
Sign In
falkTX
/
FFmpeg
mirror of
https://github.com/falkTX/FFmpeg.git
Watch
1
Star
0
Fork
0
Code
Issues
0
Releases
338
Wiki
Activity
Browse Source
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.
tags/n0.9
Clément Bœsch
14 years ago
parent
f4eeb000bf
commit
2f468826ee
1 changed files
with
1 additions
and
1 deletions
Split View
Diff Options
Show Stats
Download Patch File
Download Diff File
+1
-1
ffprobe.c
+ 1
- 1
ffprobe.c
View File
@@ -842,7 +842,7 @@ static int probe_file(const char *filename)
writer_close(&wctx);
end:
av_free(print_format);
av_free
p
(
&
print_format);
return ret;
}
Write
Preview
Loading…
Cancel
Save