]> git.ipfire.org Git - thirdparty/kernel/stable.git/commit
backlight: pm8941: Add NULL check in wled_configure()
authorHenry Martin <bsdhenrymartin@gmail.com>
Tue, 1 Apr 2025 09:16:47 +0000 (17:16 +0800)
committerLee Jones <lee@kernel.org>
Tue, 15 Apr 2025 17:27:38 +0000 (18:27 +0100)
commite12d3e1624a02706cdd3628bbf5668827214fa33
tree245e60494f52e4a04f7cc798924a07067aee7e07
parentd32a0b567a8a8b6e677d35c4f8eb8bd32b7029a0
backlight: pm8941: Add NULL check in wled_configure()

devm_kasprintf() returns NULL when memory allocation fails. Currently,
wled_configure() does not check for this case, which results in a NULL
pointer dereference.

Add NULL check after devm_kasprintf() to prevent this issue.

Fixes: f86b77583d88 ("backlight: pm8941: Convert to using %pOFn instead of device_node.name")
Signed-off-by: Henry Martin <bsdhenrymartin@gmail.com>
Reviewed-by: Dmitry Baryshkov <dmitry.baryshkov@oss.qualcomm.com>
Reviewed-by: "Daniel Thompson (RISCstar)" <danielt@kernel.org>
Link: https://lore.kernel.org/r/20250401091647.22784-1-bsdhenrymartin@gmail.com
Signed-off-by: Lee Jones <lee@kernel.org>
drivers/video/backlight/qcom-wled.c