[<prev] [next>] [thread-next>] [day] [month] [year] [list]
Message-ID: <1350911153-23647-1-git-send-email-kirjanov@gmail.com>
Date: Mon, 22 Oct 2012 17:05:53 +0400
From: Denis Kirjanov <kirjanov@...il.com>
To: perex@...ex.cz
CC: tiwai@...e.de, alsa-devel@...a-project.org,
linux-kernel@...r.kernel.org, kirjanov@...il.com
Subject: [PATCH] check for the kzalloc return value
Signed-off-by: Denis Kirjanov <kirjanov@...il.com>
---
sound/pci/als300.c | 4 ++++
1 file changed, 4 insertions(+)
diff --git a/sound/pci/als300.c b/sound/pci/als300.c
index 68c4469..e1f74d4 100644
--- a/sound/pci/als300.c
+++ b/sound/pci/als300.c
@@ -394,6 +394,8 @@ static int snd_als300_playback_open(struct snd_pcm_substream *substream)
struct snd_als300_substream_data *data = kzalloc(sizeof(*data),
GFP_KERNEL);
+ if (!data)
+ return -ENOMEM;
snd_als300_dbgcallenter();
chip->playback_substream = substream;
runtime->hw = snd_als300_playback_hw;
@@ -425,6 +427,8 @@ static int snd_als300_capture_open(struct snd_pcm_substream *substream)
struct snd_als300_substream_data *data = kzalloc(sizeof(*data),
GFP_KERNEL);
+ if (!data)
+ return -ENOMEM;
snd_als300_dbgcallenter();
chip->capture_substream = substream;
runtime->hw = snd_als300_capture_hw;
--
1.7.9.5
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@...r.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/
Powered by blists - more mailing lists