From 9700a7a1dd25651d5b79af8a05ef6f467ec07520 Mon Sep 17 00:00:00 2001 From: Michael Niedermayer Date: Tue, 18 Dec 2012 17:31:01 +0100 Subject: [PATCH] af_apad: remove unneeded av_opt_free Signed-off-by: Michael Niedermayer --- libavfilter/af_apad.c | 2 -- 1 file changed, 2 deletions(-) diff --git a/libavfilter/af_apad.c b/libavfilter/af_apad.c index 4bf2d8111b..18a0170688 100644 --- a/libavfilter/af_apad.c +++ b/libavfilter/af_apad.c @@ -74,8 +74,6 @@ static av_cold int init(AVFilterContext *ctx, const char *args) return AVERROR(EINVAL); } - av_opt_free(apad); - return 0; }