Messages in this thread Patch in this message |  | | | Date | Fri, 24 Mar 2006 20:27:05 -0800 | | From | Greg KH <> | | Subject | [patch 09/20] sysfs: fix a kobject leak in sysfs_add_link on the error path |
| |
-stable review patch. If anyone has any objections, please let us know.
------------------ As pointed out by Oliver Neukum. Cc: Maneesh Soni <maneesh@in.ibm.com> Cc: Oliver Neukum <oliver@neukum.org> Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
--- fs/sysfs/symlink.c | 1 + 1 file changed, 1 insertion(+) b3229087c5e08589cea4f5040dab56f7dc11332a --- linux-2.6.16.orig/fs/sysfs/symlink.c +++ linux-2.6.16/fs/sysfs/symlink.c @@ -66,6 +66,7 @@ static int sysfs_add_link(struct dentry if (!error) return 0; + kobject_put(target); kfree(sl->link_name); exit2: kfree(sl); -- - To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/
|  |