From: Andre Noll Date: Thu, 13 Sep 2007 21:06:39 +0000 (+0200) Subject: aac_afh.c: Fix serious memory leak. X-Git-Tag: v0.3.0~419 X-Git-Url: http://git.tuebingen.mpg.de/?p=paraslash.git;a=commitdiff_plain;h=77960b7b4c6e5b03c5ef2fe897c5e00395b9ae15;ds=sidebyside aac_afh.c: Fix serious memory leak. Ooops. We forgot to close the AAC decoder handle... --- diff --git a/aac_afh.c b/aac_afh.c index 9bb4323c..85bad6d9 100644 --- a/aac_afh.c +++ b/aac_afh.c @@ -100,7 +100,7 @@ static int aac_get_file_info(char *map, size_t numbytes, unsigned long rate = 0, decoder_len; unsigned char channels = 0; mp4AudioSpecificConfig mp4ASC; - NeAACDecHandle handle; + NeAACDecHandle handle = NULL; unsigned char *umap = (unsigned char *) map; ret = aac_find_esds(umap, numbytes, &skip, &decoder_len); @@ -146,6 +146,8 @@ static int aac_get_file_info(char *map, size_t numbytes, tv_scale(20, &afi->chunk_tv, &afi->eof_tv); ret = 1; out: + if (handle) + NeAACDecClose(handle); return ret; }