diff options
| author | Cornelia Huck <cornelia.huck@de.ibm.com> | 2007-04-10 08:35:27 -0400 |
|---|---|---|
| committer | Greg Kroah-Hartman <gregkh@suse.de> | 2007-04-27 13:57:30 -0400 |
| commit | 88db4721d47bc59b92d46de04e21c7975ea983f2 (patch) | |
| tree | 1b0fd38941f3cebd8cf669a2328f656a89c7d508 | |
| parent | 14193fb91a7d88d3fe55d3160892edeb2b02e0c2 (diff) | |
kobject: kobject_add() reference leak
We leak a reference if we attempt to add a kobject with no name.
Signed-off-by: Cornelia Huck <cornelia.huck@de.ibm.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
| -rw-r--r-- | lib/kobject.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/lib/kobject.c b/lib/kobject.c index db1d23707eb1..eb251aae78dd 100644 --- a/lib/kobject.c +++ b/lib/kobject.c | |||
| @@ -174,6 +174,7 @@ int kobject_shadow_add(struct kobject * kobj, struct dentry *shadow_parent) | |||
| 174 | if (!*kobj->k_name) { | 174 | if (!*kobj->k_name) { |
| 175 | pr_debug("kobject attempted to be registered with no name!\n"); | 175 | pr_debug("kobject attempted to be registered with no name!\n"); |
| 176 | WARN_ON(1); | 176 | WARN_ON(1); |
| 177 | kobject_put(kobj); | ||
| 177 | return -EINVAL; | 178 | return -EINVAL; |
| 178 | } | 179 | } |
| 179 | parent = kobject_get(kobj->parent); | 180 | parent = kobject_get(kobj->parent); |
