aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorXiaoke Wang <[email protected]>2021-12-13 15:39:31 +0800
committerTakashi Iwai <[email protected]>2021-12-13 10:38:27 +0100
commitc01c1db1dc632edafb0dff32d40daf4f9c1a4e19 (patch)
treeaa267940e2b263a6627e1afad6ae14211b8aaabb
parent2dee54b289fbc810669a1b2b8a0887fa1c9a14d7 (diff)
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: Xiaoke Wang <[email protected]> Cc: <[email protected]> Link: https://lore.kernel.org/r/[email protected] Signed-off-by: Takashi Iwai <[email protected]>
-rw-r--r--sound/core/jack.c4
1 files changed, 4 insertions, 0 deletions
diff --git a/sound/core/jack.c b/sound/core/jack.c
index 32350c6aba84..537df1e98f8a 100644
--- a/sound/core/jack.c
+++ b/sound/core/jack.c
@@ -509,6 +509,10 @@ 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) {
+ kfree(jack);
+ return -ENOMEM;
+ }
/* don't creat input device for phantom jack */
if (!phantom_jack) {