nvmet: Open code nvmet_req_execute()
[linux-2.6-block.git] / lib / kobject.c
index f2ccdbac8ed98a124a309b0d858808d706293207..83198cb37d8d93b6ac5263b16b4a9c72e5a958ef 100644 (file)
@@ -498,8 +498,10 @@ int kobject_rename(struct kobject *kobj, const char *new_name)
        kobj = kobject_get(kobj);
        if (!kobj)
                return -EINVAL;
-       if (!kobj->parent)
+       if (!kobj->parent) {
+               kobject_put(kobj);
                return -EINVAL;
+       }
 
        devpath = kobject_get_path(kobj, GFP_KERNEL);
        if (!devpath) {