Commit a7bcae59 authored by Nishka Dasgupta's avatar Nishka Dasgupta Committed by Rob Herring

of: unittest: Add of_node_put() before return

The local variable np in function of_unittest_platform_populate takes
the return value of of_find_node_by_path, which gets a node but does not
put it. If np is not put before return it may cause a memory leak. Hence
put np before a return statement.
Issue found with Coccinelle.
Signed-off-by: default avatarNishka Dasgupta <nishkadg.linux@gmail.com>
Signed-off-by: default avatarRob Herring <robh@kernel.org>
parent 476646e0
...@@ -1044,8 +1044,10 @@ static void __init of_unittest_platform_populate(void) ...@@ -1044,8 +1044,10 @@ static void __init of_unittest_platform_populate(void)
test_bus = platform_device_register_full(&test_bus_info); test_bus = platform_device_register_full(&test_bus_info);
rc = PTR_ERR_OR_ZERO(test_bus); rc = PTR_ERR_OR_ZERO(test_bus);
unittest(!rc, "testbus registration failed; rc=%i\n", rc); unittest(!rc, "testbus registration failed; rc=%i\n", rc);
if (rc) if (rc) {
of_node_put(np);
return; return;
}
test_bus->dev.of_node = np; test_bus->dev.of_node = np;
/* /*
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment