Skip to content

Commit

Permalink
pmdomain: ti: Add a null pointer check to the omap_prm_domain_init
Browse files Browse the repository at this point in the history
[ Upstream commit 5d7f58e ]

devm_kasprintf() returns a pointer to dynamically allocated memory
which can be NULL upon failure. Ensure the allocation was successful
by checking the pointer validity.

Signed-off-by: Kunwu Chan <chentao@kylinos.cn>
Link: https://lore.kernel.org/r/20240118054257.200814-1-chentao@kylinos.cn
Signed-off-by: Ulf Hansson <ulf.hansson@linaro.org>
Signed-off-by: Sasha Levin <sashal@kernel.org>
  • Loading branch information
KunWuChan authored and gregkh committed Apr 13, 2024
1 parent 54f1341 commit 04f2351
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions drivers/pmdomain/ti/omap_prm.c
Expand Up @@ -695,6 +695,8 @@ static int omap_prm_domain_init(struct device *dev, struct omap_prm *prm)
data = prm->data;
name = devm_kasprintf(dev, GFP_KERNEL, "prm_%s",
data->name);
if (!name)
return -ENOMEM;

prmd->dev = dev;
prmd->prm = prm;
Expand Down

0 comments on commit 04f2351

Please sign in to comment.