From 0e9fbd35b5544e7799db67302d3d7e2ea761b4c4 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?M=C3=A5ns=20Rullg=C3=A5rd?= Date: Mon, 3 Mar 2008 21:54:18 +0000 Subject: [PATCH] remove invalid free() forgotten in r12300 Originally committed as revision 12303 to svn://svn.ffmpeg.org/ffmpeg/trunk --- libavcodec/imgresample.c | 1 - 1 file changed, 1 deletion(-) diff --git a/libavcodec/imgresample.c b/libavcodec/imgresample.c index e2cc0c27c9..b5c57ffd94 100644 --- a/libavcodec/imgresample.c +++ b/libavcodec/imgresample.c @@ -557,7 +557,6 @@ void sws_freeContext(struct SwsContext *ctx) } else { av_free(ctx->resampling_ctx); } - av_free(ctx->av_class); av_free(ctx); }