aboutsummaryrefslogtreecommitdiffstats
path: root/sound/core
diff options
context:
space:
mode:
authorAkinobu Mita <akinobu.mita@gmail.com>2006-11-23 06:02:33 -0500
committerJaroslav Kysela <perex@server.perex.cz>2006-12-20 02:55:59 -0500
commitc13893d7be4f159b359a1b7ee46b3646ecb2fe20 (patch)
tree3e4bb900eb0776f2a7cc4d36551459d86081c7c8 /sound/core
parenta48bb28c167b5cad1bd4978dbb83c89252caab78 (diff)
[ALSA] sound: initialize rawmidi substream list
If snd_rawmidi_new() failed to allocate substreams for input (snd_rawmidi_alloc_substreams() failed to populate a &rmidi->streams[SNDRV_RAWMIDI_STREAM_INPUT]), it will try to free rawmidi instance by snd_rawmidi_free(). But it will cause oops because snd_rawmidi_free() tries to free both of substreams list but list for output (&rmidi->streams[SNDRV_RAWMIDI_STREAM_OUTPUT]) is not initialized yet. Signed-off-by: Akinobu Mita <akinobu.mita@gmail.com> Signed-off-by: Takashi Iwai <tiwai@suse.de> Signed-off-by: Jaroslav Kysela <perex@suse.cz>
Diffstat (limited to 'sound/core')
-rw-r--r--sound/core/rawmidi.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/sound/core/rawmidi.c b/sound/core/rawmidi.c
index 269c467ca9bb..0f055bfcbdac 100644
--- a/sound/core/rawmidi.c
+++ b/sound/core/rawmidi.c
@@ -1385,7 +1385,6 @@ static int snd_rawmidi_alloc_substreams(struct snd_rawmidi *rmidi,
1385 struct snd_rawmidi_substream *substream; 1385 struct snd_rawmidi_substream *substream;
1386 int idx; 1386 int idx;
1387 1387
1388 INIT_LIST_HEAD(&stream->substreams);
1389 for (idx = 0; idx < count; idx++) { 1388 for (idx = 0; idx < count; idx++) {
1390 substream = kzalloc(sizeof(*substream), GFP_KERNEL); 1389 substream = kzalloc(sizeof(*substream), GFP_KERNEL);
1391 if (substream == NULL) { 1390 if (substream == NULL) {
@@ -1440,6 +1439,9 @@ int snd_rawmidi_new(struct snd_card *card, char *id, int device,
1440 rmidi->device = device; 1439 rmidi->device = device;
1441 mutex_init(&rmidi->open_mutex); 1440 mutex_init(&rmidi->open_mutex);
1442 init_waitqueue_head(&rmidi->open_wait); 1441 init_waitqueue_head(&rmidi->open_wait);
1442 INIT_LIST_HEAD(&rmidi->streams[SNDRV_RAWMIDI_STREAM_INPUT].substreams);
1443 INIT_LIST_HEAD(&rmidi->streams[SNDRV_RAWMIDI_STREAM_OUTPUT].substreams);
1444
1443 if (id != NULL) 1445 if (id != NULL)
1444 strlcpy(rmidi->id, id, sizeof(rmidi->id)); 1446 strlcpy(rmidi->id, id, sizeof(rmidi->id));
1445 if ((err = snd_rawmidi_alloc_substreams(rmidi, 1447 if ((err = snd_rawmidi_alloc_substreams(rmidi,