powerpc/pseries: fix a potential memory leak
authorAndy Shevchenko <andriy.shevchenko@linux.intel.com>
Thu, 1 Oct 2015 09:46:07 +0000 (12:46 +0300)
committerMichael Ellerman <mpe@ellerman.id.au>
Mon, 5 Oct 2015 10:11:25 +0000 (21:11 +1100)
In case we have a full node name like /foo/bar and /foo is not found the
parent_path left unfreed. So, free a memory before return to a caller.

Signed-off-by: Andy Shevchenko <andriy.shevchenko@linux.intel.com>
Signed-off-by: Michael Ellerman <mpe@ellerman.id.au>
arch/powerpc/platforms/pseries/of_helpers.c

index 1cbd8961448436baee3b147fd38d76ab3a9a7696..2f363e3286d17bba20c76bb72446bc52a02923e5 100644 (file)
@@ -15,7 +15,7 @@
  */
 struct device_node *pseries_of_derive_parent(const char *path)
 {
-       struct device_node *parent = NULL;
+       struct device_node *parent;
        char *parent_path = "/";
        size_t parent_path_len = strrchr(path, '/') - path + 1;
 
@@ -30,9 +30,7 @@ struct device_node *pseries_of_derive_parent(const char *path)
                strlcpy(parent_path, path, parent_path_len);
        }
        parent = of_find_node_by_path(parent_path);
-       if (!parent)
-               return ERR_PTR(-EINVAL);
        if (strcmp(parent_path, "/"))
                kfree(parent_path);
-       return parent;
+       return parent ? parent : ERR_PTR(-EINVAL);
 }