diff options
author | Takashi Iwai <tiwai@suse.de> | 2012-06-26 14:54:32 +0200 |
---|---|---|
committer | Takashi Iwai <tiwai@suse.de> | 2012-06-26 14:56:20 +0200 |
commit | ee48df57c920ab876dd8cf0dcfe5b8893b98e934 (patch) | |
tree | b41a7fde822cf3ba5ea05af6640f48d8b645e745 /sound/pci/hda/hda_auto_parser.c | |
parent | befae82e2906cb7155020876a531b0b8c6c8d8c8 (diff) | |
download | linux-ee48df57c920ab876dd8cf0dcfe5b8893b98e934.tar.gz linux-ee48df57c920ab876dd8cf0dcfe5b8893b98e934.tar.bz2 linux-ee48df57c920ab876dd8cf0dcfe5b8893b98e934.zip |
ALSA: hda - Fix memory leaks in Realtek & Conexant codec parsers
When moved to the helper code, forgot to release the verb arrays.
Signed-off-by: Takashi Iwai <tiwai@suse.de>
Diffstat (limited to 'sound/pci/hda/hda_auto_parser.c')
-rw-r--r-- | sound/pci/hda/hda_auto_parser.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/sound/pci/hda/hda_auto_parser.c b/sound/pci/hda/hda_auto_parser.c index 6e9ef3e25093..f7520b9f909c 100644 --- a/sound/pci/hda/hda_auto_parser.c +++ b/sound/pci/hda/hda_auto_parser.c @@ -618,7 +618,6 @@ int snd_hda_gen_add_verbs(struct hda_gen_spec *spec, const struct hda_verb *list) { const struct hda_verb **v; - snd_array_init(&spec->verbs, sizeof(struct hda_verb *), 8); v = snd_array_new(&spec->verbs); if (!v) return -ENOMEM; |