]> git.itanic.dy.fi Git - linux-stable/commit
firmware: tegra: bpmp: Return directly after a failed kzalloc() in get_filename()
authorMarkus Elfring <elfring@users.sourceforge.net>
Mon, 25 Dec 2023 19:03:56 +0000 (20:03 +0100)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Sat, 13 Apr 2024 11:09:59 +0000 (13:09 +0200)
commit3fe40a6e2d32822ea552a3cce840a2dfb9d7328b
tree6169b11648a5432c88fe5fac3be9255dbef63514
parentfff05b2b004d9a8a2416d08647f3dc9068e357c8
firmware: tegra: bpmp: Return directly after a failed kzalloc() in get_filename()

[ Upstream commit 1315848f1f8a0100cb6f8a7187bc320c5d98947f ]

The kfree() function was called in one case by
the get_filename() function during error handling
even if the passed variable contained a null pointer.
This issue was detected by using the Coccinelle software.

Thus return directly after a call of the function “kzalloc” failed
at the beginning.

Signed-off-by: Markus Elfring <elfring@users.sourceforge.net>
Signed-off-by: Thierry Reding <treding@nvidia.com>
Signed-off-by: Sasha Levin <sashal@kernel.org>
drivers/firmware/tegra/bpmp-debugfs.c