Skip to content

Commit

Permalink
[ALSA] sound/isa/cmi8330.c: check kmalloc() return value
Browse files Browse the repository at this point in the history
Check the return value of kmalloc() in function snd_cmi8330_pnp(),
in file sound/isa/cmi8330.c.

Signed-off-by: Amit Choudhary <[email protected]>
Signed-off-by: Takashi Iwai <[email protected]>
Signed-off-by: Jaroslav Kysela <[email protected]>
  • Loading branch information
Amit Choudhary authored and Jaroslav Kysela committed Oct 22, 2006
1 parent 4a81a21 commit fbdbb22
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions sound/isa/cmi8330.c
Original file line number Diff line number Diff line change
Expand Up @@ -289,6 +289,8 @@ static int __devinit snd_cmi8330_pnp(int dev, struct snd_cmi8330 *acard,
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);
Expand Down

0 comments on commit fbdbb22

Please sign in to comment.