diff options
author | Takashi Iwai <tiwai@suse.de> | 2005-03-30 06:49:06 -0500 |
---|---|---|
committer | Jaroslav Kysela <perex@suse.cz> | 2005-05-29 03:00:37 -0400 |
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 18247db45db6..57be9155eb62 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) | |||
414 | if (newclient) | 414 | if (newclient) |
415 | synths[card->number] = client; | 415 | synths[card->number] = client; |
416 | up(®ister_mutex); | 416 | up(®ister_mutex); |
417 | kfree(info); | ||
418 | kfree(port); | ||
417 | return 0; /* success */ | 419 | return 0; /* success */ |
418 | 420 | ||
419 | __nomem: | 421 | __nomem: |