summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndrey Mazo <mazo@telum.ru>2013-11-17 01:11:55 +0400
committerTakashi Iwai <tiwai@suse.de>2013-11-17 10:15:34 +0100
commite017c5f2df386c7c1f221a2f01c80edeec04b253 (patch)
tree33671fdb800a18f9ec2478eb3dc3bc09ec2c6d40
parent1919ee473d9bc6983f11327aef3ae76e923f41be (diff)
downloadalsa-lib-e017c5f2df386c7c1f221a2f01c80edeec04b253.tar.gz
pcm_file: fixed memory leak.
Valgrind report for this leak was: Command: aplay -Dfile:'/tmp/qqq',raw qqq.wav 14 bytes in 1 blocks are definitely lost in loss record 1 of 2 at 0x402BF5C: malloc (in /usr/lib/valgrind/vgpreload_memcheck-x86-linux.so) by 0x40D7557: snd_pcm_file_hw_params (in /usr/lib/libasound.so.2.0.0) by 0x40BA093: _snd_pcm_hw_params_internal (in /usr/lib/libasound.so.2.0.0) by 0x40AB831: snd_pcm_hw_params (in /usr/lib/libasound.so.2.0.0) by 0x804C523: ??? (in /usr/bin/aplay) by 0x804E5B7: ??? (in /usr/bin/aplay) by 0x804FC8C: ??? (in /usr/bin/aplay) by 0x80520FB: ??? (in /usr/bin/aplay) by 0x4184942: (below main) (libc-start.c:226) Signed-off-by: Andrey Mazo <mazo@telum.ru> Signed-off-by: Takashi Iwai <tiwai@suse.de>
-rw-r--r--src/pcm/pcm_file.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/pcm/pcm_file.c b/src/pcm/pcm_file.c
index 3d14090f..c3e67b2b 100644
--- a/src/pcm/pcm_file.c
+++ b/src/pcm/pcm_file.c
@@ -592,8 +592,10 @@ static int snd_pcm_file_hw_free(snd_pcm_t *pcm)
snd_pcm_file_t *file = pcm->private_data;
free(file->wbuf);
free(file->wbuf_areas);
+ free(file->final_fname);
file->wbuf = NULL;
file->wbuf_areas = NULL;
+ file->final_fname = NULL;
return snd_pcm_hw_free(file->gen.slave);
}