Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 185000fc authored by Li Zefan's avatar Li Zefan Committed by Greg Kroah-Hartman
Browse files

kobject: should use kobject_put() in kset-example



We should call kobject_put() instead of kfree() if kobject_init_and_add()
returns an error, shouldn't we? Don't set up a bad example ;)

Signed-off-by: default avatarLi Zefan <lizf@cn.fujitsu.com>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@suse.de>
parent a231934b
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -211,7 +211,7 @@ static struct foo_obj *create_foo_obj(const char *name)
	 */
	retval = kobject_init_and_add(&foo->kobj, &foo_ktype, NULL, "%s", name);
	if (retval) {
		kfree(foo);
		kobject_put(&foo->kobj);
		return NULL;
	}