Merge branch 'fix/misc' into for-linus
* fix/misc: ALSA: sound/aoa: Add kmalloc NULL tests
This commit is contained in:
Коммит
d62e345f14
|
@ -182,6 +182,10 @@ static int pmf_set_notify(struct gpio_runtime *rt,
|
|||
if (!old && notify) {
|
||||
irq_client = kzalloc(sizeof(struct pmf_irq_client),
|
||||
GFP_KERNEL);
|
||||
if (!irq_client) {
|
||||
err = -ENOMEM;
|
||||
goto out_unlock;
|
||||
}
|
||||
irq_client->data = notif;
|
||||
irq_client->handler = pmf_handle_notify_irq;
|
||||
irq_client->owner = THIS_MODULE;
|
||||
|
|
Загрузка…
Ссылка в новой задаче