]> www.infradead.org Git - users/hch/misc.git/commitdiff
ASoC: amd/sdw_utils: avoid NULL deref when devm_kasprintf() fails
authorLi Qiang <liqiang01@kylinos.cn>
Wed, 15 Oct 2025 07:55:30 +0000 (15:55 +0800)
committerMark Brown <broonie@kernel.org>
Wed, 15 Oct 2025 18:53:20 +0000 (19:53 +0100)
devm_kasprintf() may return NULL on memory allocation failure,
but the debug message prints cpus->dai_name before checking it.
Move the dev_dbg() call after the NULL check to prevent potential
NULL pointer dereference.

Fixes: cb8ea62e64020 ("ASoC: amd/sdw_utils: add sof based soundwire generic machine driver")
Signed-off-by: Li Qiang <liqiang01@kylinos.cn>
Link: https://patch.msgid.link/20251015075530.146851-1-liqiang01@kylinos.cn
Signed-off-by: Mark Brown <broonie@kernel.org>
sound/soc/amd/acp/acp-sdw-sof-mach.c

index 91d72d4bb9a26c7cc227dd7b14ed999c931cb021..d055582a3bf1adab6a801ebae68bc044e5798745 100644 (file)
@@ -176,9 +176,9 @@ static int create_sdw_dailink(struct snd_soc_card *card,
                        cpus->dai_name = devm_kasprintf(dev, GFP_KERNEL,
                                                        "SDW%d Pin%d",
                                                        link_num, cpu_pin_id);
-                       dev_dbg(dev, "cpu->dai_name:%s\n", cpus->dai_name);
                        if (!cpus->dai_name)
                                return -ENOMEM;
+                       dev_dbg(dev, "cpu->dai_name:%s\n", cpus->dai_name);
 
                        codec_maps[j].cpu = 0;
                        codec_maps[j].codec = j;