[<prev] [next>] [<thread-prev] [day] [month] [year] [list]
Message-ID: <64e31a014f01755c618c9d126f006b01fbc66408.camel@perches.com>
Date: Sat, 11 Dec 2021 21:44:33 -0800
From: Joe Perches <joe@...ches.com>
To: xkernel <xkernel.wang@...mail.com>, perex@...ex.cz, tiwai@...e.com
Cc: alsa-devel@...a-project.org, linux-kernel@...r.kernel.org
Subject: Re: [PATCH] ALSA: jack: Check the return value of kstrdup()
On Sun, 2021-12-12 at 01:13 +0800, xkernel wrote:
> kstrdup() can return NULL, it is better to check the return value of it.
[]
> diff --git a/sound/core/jack.c b/sound/core/jack.c
[]
> @@ -509,6 +509,8 @@ int snd_jack_new(struct snd_card *card, const char *id, int type,
> return -ENOMEM;
>
> jack->id = kstrdup(id, GFP_KERNEL);
> + if (jack->id == NULL)
> + return -ENOMEM;
jack should be freed too.
if (!jack->id) {
kfree(jack);
return -ENOMEM;
}
>
> /* don't creat input device for phantom jack */
> if (!phantom_jack) {
Powered by blists - more mailing lists