diff options
author | Måns Rullgård <mans@mansr.com> | 2008-03-03 21:54:18 +0000 |
---|---|---|
committer | Måns Rullgård <mans@mansr.com> | 2008-03-03 21:54:18 +0000 |
commit | 0e9fbd35b5544e7799db67302d3d7e2ea761b4c4 (patch) | |
tree | 79092b006d375127351e940f26840de42bc3b740 | |
parent | 932ccf398a80f0decdab125760a7e0a357aa8d52 (diff) | |
download | ffmpeg-0e9fbd35b5544e7799db67302d3d7e2ea761b4c4.tar.gz |
remove invalid free() forgotten in r12300
Originally committed as revision 12303 to svn://svn.ffmpeg.org/ffmpeg/trunk
-rw-r--r-- | libavcodec/imgresample.c | 1 |
1 files changed, 0 insertions, 1 deletions
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); } |