mirror of
https://github.com/nxp-imx/linux-imx.git
synced 2025-07-06 17:35:20 +02:00
wifi: mt76: mt7915: check devm_kasprintf() returned value
commit267efeda8c
upstream. devm_kasprintf() can return a NULL pointer on failure but this returned value is not checked. Fix this lack and check the returned value. Found by code review. Cc: stable@vger.kernel.org Fixes:6ae39b7c7e
("wifi: mt76: mt7921: Support temp sensor") Signed-off-by: Ma Ke <make24@iscas.ac.cn> Reviewed-by: Matthias Brugger <matthias.bgg@gmail.com> Link: https://patch.msgid.link/20240903014955.4145423-1-make24@iscas.ac.cn Signed-off-by: Felix Fietkau <nbd@nbd.name> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
parent
0a74a9b148
commit
cf23427dd7
|
@ -194,6 +194,8 @@ static int mt7915_thermal_init(struct mt7915_phy *phy)
|
|||
|
||||
name = devm_kasprintf(&wiphy->dev, GFP_KERNEL, "mt7915_%s",
|
||||
wiphy_name(wiphy));
|
||||
if (!name)
|
||||
return -ENOMEM;
|
||||
|
||||
cdev = thermal_cooling_device_register(name, phy, &mt7915_thermal_ops);
|
||||
if (!IS_ERR(cdev)) {
|
||||
|
|
Loading…
Reference in New Issue
Block a user