]> www.infradead.org Git - users/dwmw2/linux.git/commitdiff
ASoC: acp: check the return value of devm_kzalloc() in acp_legacy_dai_links_create()
authorJia-Ju Bai <baijiaju1990@gmail.com>
Fri, 25 Feb 2022 13:16:45 +0000 (05:16 -0800)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Fri, 8 Apr 2022 11:57:49 +0000 (13:57 +0200)
[ Upstream commit 431f9a77a4a62694ce90742d1f4c5abe1b8b6612 ]

The function devm_kzalloc() in acp_legacy_dai_links_create() can fail,
so its return value should be checked.

Fixes: d4c750f2c7d4 ("ASoC: amd: acp: Add generic machine driver support for ACP cards")
Reported-by: TOTE Robot <oslab@tsinghua.edu.cn>
Signed-off-by: Jia-Ju Bai <baijiaju1990@gmail.com>
Link: https://lore.kernel.org/r/20220225131645.27556-1-baijiaju1990@gmail.com
Signed-off-by: Mark Brown <broonie@kernel.org>
Signed-off-by: Sasha Levin <sashal@kernel.org>
sound/soc/amd/acp/acp-mach-common.c

index cd05ee2802c9e355119dad8a751d387780e0c497..5247015e8b316c97939ffa3b8f7694d6ba543ace 100644 (file)
@@ -556,6 +556,8 @@ int acp_legacy_dai_links_create(struct snd_soc_card *card)
                num_links++;
 
        links = devm_kzalloc(dev, sizeof(struct snd_soc_dai_link) * num_links, GFP_KERNEL);
+       if (!links)
+               return -ENOMEM;
 
        if (drv_data->hs_cpu_id == I2S_SP) {
                links[i].name = "acp-headset-codec";