From: Monty Date: Mon, 22 Jan 2001 06:32:02 +0000 (+0000) Subject: Have to free the noiseoffset array in psy_clear X-Git-Tag: v1.3.3~1056 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=74694089f9aff4766ff723fe9e8108b6d273f563;p=platform%2Fupstream%2Flibvorbis.git Have to free the noiseoffset array in psy_clear svn path=/trunk/vorbis/; revision=1193 --- diff --git a/lib/psy.c b/lib/psy.c index c02bab9..5a50541 100644 --- a/lib/psy.c +++ b/lib/psy.c @@ -12,7 +12,7 @@ ******************************************************************** function: psychoacoustics not including preecho - last mod: $Id: psy.c,v 1.35 2001/01/22 01:38:25 xiphmont Exp $ + last mod: $Id: psy.c,v 1.36 2001/01/22 06:32:02 xiphmont Exp $ ********************************************************************/ @@ -323,6 +323,7 @@ void _vp_psy_clear(vorbis_look_psy *p){ } _ogg_free(p->tonecurves); _ogg_free(p->noisemedian); + _ogg_free(p->noiseoffset); _ogg_free(p->peakatt); } memset(p,0,sizeof(vorbis_look_psy));