From: Erhard Furtner Date: Tue, 26 Nov 2019 01:48:04 +0000 (+0100) Subject: of: unittest: fix memory leak in attach_node_and_children X-Git-Url: http://git.maquefel.me/?a=commitdiff_plain;h=2aacace6dbbb6b6ce4e177e6c7ea901f389c0472;p=linux.git of: unittest: fix memory leak in attach_node_and_children In attach_node_and_children memory is allocated for full_name via kasprintf. If the condition of the 1st if is not met the function returns early without freeing the memory. Add a kfree() to fix that. This has been detected with kmemleak: Link: https://bugzilla.kernel.org/show_bug.cgi?id=205327 It looks like the leak was introduced by this commit: Fixes: 5babefb7f7ab ("of: unittest: allow base devicetree to have symbol metadata") Signed-off-by: Erhard Furtner Reviewed-by: Michael Ellerman Reviewed-by: Tyrel Datwyler Signed-off-by: Rob Herring --- diff --git a/drivers/of/unittest.c b/drivers/of/unittest.c index 445f134b62c0c..68b87587b2ef8 100644 --- a/drivers/of/unittest.c +++ b/drivers/of/unittest.c @@ -1236,8 +1236,10 @@ static void attach_node_and_children(struct device_node *np) full_name = kasprintf(GFP_KERNEL, "%pOF", np); if (!strcmp(full_name, "/__local_fixups__") || - !strcmp(full_name, "/__fixups__")) + !strcmp(full_name, "/__fixups__")) { + kfree(full_name); return; + } dup = of_find_node_by_path(full_name); kfree(full_name);