summaryrefslogtreecommitdiff
path: root/libpostproc/postprocess.c
diff options
context:
space:
mode:
authorMichael Niedermayer <michaelni@gmx.at>2006-10-03 17:24:07 +0000
committerMichael Niedermayer <michaelni@gmx.at>2006-10-03 17:24:07 +0000
commit4851f2ad9238b6f12120b011214b4104177872c0 (patch)
tree61da9809077411708a4a8ca7b8cb9a59689a5d99 /libpostproc/postprocess.c
parent36c32bdddfe9d19d3ea57c6b1fbe30ca84c3d740 (diff)
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.c2
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);
}