projects
/
GitHub
/
LineageOS
/
android_kernel_motorola_exynos9610.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
fbdbb22
)
[ALSA] sound/isa/ad1816a/ad1816a.c: check kmalloc() return value
author
Amit Choudhary
<amit2030@gmail.com>
Mon, 9 Oct 2006 14:03:52 +0000
(16:03 +0200)
committer
Jaroslav Kysela
<perex@suse.cz>
Sun, 22 Oct 2006 08:51:06 +0000
(10:51 +0200)
Check the return value of kmalloc() in function snd_card_ad1816a_pnp(),
in file sound/isa/
ad1816a
/
ad1816a
.c.
Signed-off-by: Amit Choudhary <amit2030@gmail.com>
Signed-off-by: Takashi Iwai <tiwai@suse.de>
Signed-off-by: Jaroslav Kysela <perex@suse.cz>
sound/isa/ad1816a/ad1816a.c
patch
|
blob
|
blame
|
history
diff --git
a/sound/isa/ad1816a/ad1816a.c
b/sound/isa/ad1816a/ad1816a.c
index b33a5fb59ec2144cf35d53acc9eafe74daca4f3e..59034507175b617b331c1dad07028344813e8f57 100644
(file)
--- a/
sound/isa/ad1816a/ad1816a.c
+++ b/
sound/isa/ad1816a/ad1816a.c
@@
-120,6
+120,8
@@
static int __devinit snd_card_ad1816a_pnp(int dev, struct snd_card_ad1816a *acar
struct pnp_resource_table *cfg = kmalloc(sizeof(*cfg), GFP_KERNEL);
int err;
+ if (!cfg)
+ return -ENOMEM;
acard->dev = pnp_request_card_device(card, id->devs[0].id, NULL);
if (acard->dev == NULL) {
kfree(cfg);