diff options
-rw-r--r-- | sound/core/rawmidi.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/sound/core/rawmidi.c b/sound/core/rawmidi.c index 7a86a9a08a15..d703545cae8a 100644 --- a/sound/core/rawmidi.c +++ b/sound/core/rawmidi.c | |||
@@ -573,6 +573,8 @@ int snd_rawmidi_info_select(struct snd_card *card, struct snd_rawmidi_info *info | |||
573 | if (info->device >= SNDRV_RAWMIDI_DEVICES) | 573 | if (info->device >= SNDRV_RAWMIDI_DEVICES) |
574 | return -ENXIO; | 574 | return -ENXIO; |
575 | rmidi = snd_rawmidi_devices[card->number * SNDRV_RAWMIDI_DEVICES + info->device]; | 575 | rmidi = snd_rawmidi_devices[card->number * SNDRV_RAWMIDI_DEVICES + info->device]; |
576 | if (!rmidi) | ||
577 | return -ENXIO; | ||
576 | if (info->stream < 0 || info->stream > 1) | 578 | if (info->stream < 0 || info->stream > 1) |
577 | return -EINVAL; | 579 | return -EINVAL; |
578 | pstr = &rmidi->streams[info->stream]; | 580 | pstr = &rmidi->streams[info->stream]; |