mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git
synced 2025-01-09 14:43:16 +00:00
ASoC: core: Fix Null-point-dereference in fmt_single_name()
Check the return value of devm_kstrdup() in case of Null-point-dereference. Fixes: 45dd9943fce0 ("ASoC: core: remove artificial component and DAI name constraint") Cc: Dmitry Baryshkov <dmitry.baryshkov@linaro.org> Reported-by: Hulk Robot <hulkci@huawei.com> Signed-off-by: Kefeng Wang <wangkefeng.wang@huawei.com> Link: https://lore.kernel.org/r/20210524024941.159952-1-wangkefeng.wang@huawei.com Signed-off-by: Mark Brown <broonie@kernel.org>
This commit is contained in:
parent
af2702549d
commit
41daf6ba59
@ -2225,6 +2225,8 @@ static char *fmt_single_name(struct device *dev, int *id)
|
||||
return NULL;
|
||||
|
||||
name = devm_kstrdup(dev, devname, GFP_KERNEL);
|
||||
if (!name)
|
||||
return NULL;
|
||||
|
||||
/* are we a "%s.%d" name (platform and SPI components) */
|
||||
found = strstr(name, dev->driver->name);
|
||||
|
Loading…
x
Reference in New Issue
Block a user