* [KJ] [PATCH] sound/isa/cmi8330.c: check kmalloc() return value.
@ 2006-10-06 5:47 Amit Choudhary
0 siblings, 0 replies; 2+ messages in thread
From: Amit Choudhary @ 2006-10-06 5:47 UTC (permalink / raw)
To: kernel-janitors
Description: Check the return value of kmalloc() in function snd_cmi8330_pnp(), in file sound/isa/cmi8330.c.
Signed-off-by: Amit Choudhary <amit2030@gmail.com>
diff --git a/sound/isa/cmi8330.c b/sound/isa/cmi8330.c
index 3c1e9fd..d1f6dfc 100644
--- a/sound/isa/cmi8330.c
+++ b/sound/isa/cmi8330.c
@@ -289,6 +289,8 @@ static int __devinit snd_cmi8330_pnp(int
struct pnp_resource_table * cfg = kmalloc(sizeof(struct pnp_resource_table), GFP_KERNEL);
int err;
+ if (!cfg)
+ return -ENOMEM;
acard->cap = pnp_request_card_device(card, id->devs[0].id, NULL);
if (acard->cap = NULL) {
kfree(cfg);
_______________________________________________
Kernel-janitors mailing list
Kernel-janitors@lists.osdl.org
https://lists.osdl.org/mailman/listinfo/kernel-janitors
^ permalink raw reply related [flat|nested] 2+ messages in thread* [KJ] [PATCH] sound/isa/cmi8330.c: check kmalloc() return value.
@ 2006-10-07 7:32 Amit Choudhary
0 siblings, 0 replies; 2+ messages in thread
From: Amit Choudhary @ 2006-10-07 7:32 UTC (permalink / raw)
To: Linux Kernel
Description: Check the return value of kmalloc() in function snd_cmi8330_pnp(), in file sound/isa/cmi8330.c.
Signed-off-by: Amit Choudhary <amit2030@gmail.com>
diff --git a/sound/isa/cmi8330.c b/sound/isa/cmi8330.c
index 3c1e9fd..d1f6dfc 100644
--- a/sound/isa/cmi8330.c
+++ b/sound/isa/cmi8330.c
@@ -289,6 +289,8 @@ static int __devinit snd_cmi8330_pnp(int
struct pnp_resource_table * cfg = kmalloc(sizeof(struct pnp_resource_table), GFP_KERNEL);
int err;
+ if (!cfg)
+ return -ENOMEM;
acard->cap = pnp_request_card_device(card, id->devs[0].id, NULL);
if (acard->cap == NULL) {
kfree(cfg);
^ permalink raw reply related [flat|nested] 2+ messages in thread
end of thread, other threads:[~2006-10-07 7:32 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2006-10-06 5:47 [KJ] [PATCH] sound/isa/cmi8330.c: check kmalloc() return value Amit Choudhary
-- strict thread matches above, loose matches on Subject: below --
2006-10-07 7:32 Amit Choudhary
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.