diff options
author | James Zern <jzern@google.com> | 2011-02-04 17:58:03 -0800 |
---|---|---|
committer | Ronald S. Bultje <rsbultje@gmail.com> | 2011-02-05 17:18:45 -0500 |
commit | 3a6a9cdf5b8e4c4514e483484ef1f57b07ee16f2 (patch) | |
tree | ab588e6a6a85dac4f769cd36102c43e5794588d5 /cmdutils.c | |
parent | 6b474953975fd8ea64d1ed4d09c42b2d8e787c6f (diff) | |
download | ffmpeg-3a6a9cdf5b8e4c4514e483484ef1f57b07ee16f2.tar.gz |
cmdutils: fix opt_values leak
Add free to uninit_opts and relocate opt_names to same
Signed-off-by: Ronald S. Bultje <rsbultje@gmail.com>
Diffstat (limited to 'cmdutils.c')
-rw-r--r-- | cmdutils.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/cmdutils.c b/cmdutils.c index 58fe85cfda..99e4c38af1 100644 --- a/cmdutils.c +++ b/cmdutils.c @@ -78,6 +78,8 @@ void uninit_opts(void) #if CONFIG_SWSCALE av_freep(&sws_opts); #endif + av_freep(&opt_names); + av_freep(&opt_values); } void log_callback_help(void* ptr, int level, const char* fmt, va_list vl) |