public inbox for linux-kernel@vger.kernel.org
 help / color / mirror / Atom feed
* [KJ] [PATCH] sound/isa/gus/interwave.c: check kmalloc() return value.
@ 2006-10-07  7:31 Amit Choudhary
  2006-10-09 14:40 ` Takashi Iwai
  0 siblings, 1 reply; 2+ messages in thread
From: Amit Choudhary @ 2006-10-07  7:31 UTC (permalink / raw)
  To: Linux Kernel

Description: Check the return value of kmalloc() in function snd_interwave_pnp(), in file sound/isa/gus/interwave.c.

Signed-off-by: Amit Choudhary <amit2030@gmail.com>

diff --git a/sound/isa/gus/interwave.c b/sound/isa/gus/interwave.c
index ea69f25..5282fbb 100644
--- a/sound/isa/gus/interwave.c
+++ b/sound/isa/gus/interwave.c
@@ -564,6 +564,8 @@ static int __devinit snd_interwave_pnp(i
 	struct pnp_resource_table * cfg = kmalloc(sizeof(struct pnp_resource_table), GFP_KERNEL);
 	int err;
 
+	if (!cfg)
+		return -ENOMEM;
 	iwcard->dev = pnp_request_card_device(card, id->devs[0].id, NULL);
 	if (iwcard->dev == NULL) {
 		kfree(cfg);

^ permalink raw reply related	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2006-10-09 14:40 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2006-10-07  7:31 [KJ] [PATCH] sound/isa/gus/interwave.c: check kmalloc() return value Amit Choudhary
2006-10-09 14:40 ` Takashi Iwai

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox