diff options
| author | Al Viro <viro@zeniv.linux.org.uk> | 2010-01-13 22:10:57 -0500 | 
|---|---|---|
| committer | Al Viro <viro@zeniv.linux.org.uk> | 2010-01-14 09:05:42 -0500 | 
| commit | 9b6e31021122babe3b3a67b102479f740928b5eb (patch) | |
| tree | aca5a8aa7af09e4aa4c30de4e4479164a44de273 | |
| parent | 9850c056559f3633a32d810aaf00ced39437b364 (diff) | |
Fix configfs leak
Signed-off-by: Al Viro <viro@zeniv.linux.org.uk>
| -rw-r--r-- | fs/configfs/symlink.c | 4 | 
1 files changed, 3 insertions, 1 deletions
| diff --git a/fs/configfs/symlink.c b/fs/configfs/symlink.c index c8afa6b1d91d..32a5f46b1157 100644 --- a/fs/configfs/symlink.c +++ b/fs/configfs/symlink.c @@ -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; | 
