[<prev] [next>] [thread-next>] [day] [month] [year] [list]
Message-ID: <tencent_3D368E118A8AF018A5B1FF16904166B2DC07@qq.com>
Date: Sun, 12 Dec 2021 01:13:26 +0800
From: xkernel <xkernel.wang@...mail.com>
To: perex@...ex.cz, tiwai@...e.com
Cc: alsa-devel@...a-project.org, linux-kernel@...r.kernel.org,
xkernel <xkernel.wang@...mail.com>
Subject: [PATCH] ALSA: jack: Check the return value of kstrdup()
kstrdup() can return NULL, it is better to check the return value of it.
Signed-off-by: xkernel <xkernel.wang@...mail.com>
---
sound/core/jack.c | 2 ++
1 file changed, 2 insertions(+)
diff --git a/sound/core/jack.c b/sound/core/jack.c
index 32350c6..5fd9954 100644
--- 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;
/* don't creat input device for phantom jack */
if (!phantom_jack) {
--
Powered by blists - more mailing lists