diff options
author | Takashi Iwai <tiwai@suse.de> | 2005-03-30 13:49:06 +0200 |
---|---|---|
committer | Jaroslav Kysela <perex@suse.cz> | 2005-05-29 09:00:37 +0200 |
commit | 51f633dada113ef724a145bb5b33ec77d1b092f6 (patch) | |
tree | 12f83d7c673ec3102bd3c93e21bdb043c9dd5db8 /sound/core | |
parent | a2142674b958d89e0806228a5f6cd22ec379d61d (diff) |
[ALSA] Fix memory leak
ALSA sequencer
Fixed memory leak by the last change of stack reduction.
Signed-off-by: Takashi Iwai <tiwai@suse.de>
Diffstat (limited to 'sound/core')
-rw-r--r-- | sound/core/seq/seq_midi.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/sound/core/seq/seq_midi.c b/sound/core/seq/seq_midi.c index 18247db45db..57be9155eb6 100644 --- a/sound/core/seq/seq_midi.c +++ b/sound/core/seq/seq_midi.c @@ -414,6 +414,8 @@ snd_seq_midisynth_register_port(snd_seq_device_t *dev) if (newclient) synths[card->number] = client; up(®ister_mutex); + kfree(info); + kfree(port); return 0; /* success */ __nomem: |