diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2006-10-03 17:24:07 +0000 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2006-10-03 17:24:07 +0000 |
commit | 4851f2ad9238b6f12120b011214b4104177872c0 (patch) | |
tree | 61da9809077411708a4a8ca7b8cb9a59689a5d99 /libpostproc/postprocess.c | |
parent | 36c32bdddfe9d19d3ea57c6b1fbe30ca84c3d740 (diff) | |
download | ffmpeg-4851f2ad9238b6f12120b011214b4104177872c0.tar.gz |
1000000l for lu_zero (commiting untested? code)
Originally committed as revision 6537 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libpostproc/postprocess.c')
-rw-r--r-- | libpostproc/postprocess.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libpostproc/postprocess.c b/libpostproc/postprocess.c index 8e934deb1c..648d3a95f1 100644 --- a/libpostproc/postprocess.c +++ b/libpostproc/postprocess.c @@ -957,7 +957,7 @@ void pp_free_mode(pp_mode_t *mode){ } static void reallocAlign(void **p, int alignment, int size){ - av_free(p); + av_free(*p); *p= av_mallocz(size); } |