ASoC: pxa: fix null-pointer dereference in filter()
[ Upstream commit ec7bf231aaa1bdbcb69d23bc50c753c80fb22429 ]
kasprintf() would return NULL pointer when kmalloc() fail to allocate.
Need to check the return pointer before calling strcmp().
Fixes: 7a824e214e
("ASoC: mmp: add audio dma support")
Signed-off-by: Zeng Heng <zengheng4@huawei.com>
Link: https://lore.kernel.org/r/20221114085629.1910435-1-zengheng4@huawei.com
Signed-off-by: Mark Brown <broonie@kernel.org>
Signed-off-by: Sasha Levin <sashal@kernel.org>
This commit is contained in:
parent
6f13a895ce
commit
a8baccb79d
@ -85,7 +85,7 @@ static bool filter(struct dma_chan *chan, void *param)
|
|||||||
|
|
||||||
devname = kasprintf(GFP_KERNEL, "%s.%d", dma_data->dma_res->name,
|
devname = kasprintf(GFP_KERNEL, "%s.%d", dma_data->dma_res->name,
|
||||||
dma_data->ssp_id);
|
dma_data->ssp_id);
|
||||||
if ((strcmp(dev_name(chan->device->dev), devname) == 0) &&
|
if (devname && (strcmp(dev_name(chan->device->dev), devname) == 0) &&
|
||||||
(chan->chan_id == dma_data->dma_res->start)) {
|
(chan->chan_id == dma_data->dma_res->start)) {
|
||||||
found = true;
|
found = true;
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user