Fix configfs leak

Signed-off-by: Al Viro <viro@zeniv.linux.org.uk>
This commit is contained in:
Al Viro 2010-01-13 22:10:57 -05:00
parent 9850c05655
commit 9b6e310211

View file

@ -121,8 +121,10 @@ static int get_target(const char *symname, struct path *path,
ret = -ENOENT;
path_put(path);
}
} else
} else {
ret = -EPERM;
path_put(path);
}
}
return ret;