soc: aspeed: Add NULL check in aspeed_lpc_enable_snoop()
authorHenry Martin <bsdhenrymartin@gmail.com>
Thu, 15 May 2025 06:30:44 +0000 (16:00 +0930)
committerArnd Bergmann <arnd@arndb.de>
Wed, 21 May 2025 21:07:23 +0000 (23:07 +0200)
commitf1706e0e1a74b095cbc60375b9b1e6205f5f4c98
treef4b69549da60efe9027e0be14b140f9d962f06f5
parentd9f0a97e859bdcef51f9c187b1eb712eb13fd3ff
soc: aspeed: Add NULL check in aspeed_lpc_enable_snoop()

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

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

Fixes: 3772e5da4454 ("drivers/misc: Aspeed LPC snoop output using misc chardev")
Signed-off-by: Henry Martin <bsdhenrymartin@gmail.com>
Link: https://patch.msgid.link/20250401074647.21300-1-bsdhenrymartin@gmail.com
[arj: Fix Fixes: tag to use subject from 3772e5da4454]
Signed-off-by: Andrew Jeffery <andrew@codeconstruct.com.au>
Signed-off-by: Arnd Bergmann <arnd@arndb.de>
drivers/soc/aspeed/aspeed-lpc-snoop.c