diff options
author | Al Viro <viro@zeniv.linux.org.uk> | 2010-06-06 23:19:04 -0400 |
---|---|---|
committer | Al Viro <viro@zeniv.linux.org.uk> | 2010-08-09 16:48:14 -0400 |
commit | f8d7e1877e5121841bc9a4d284a04dbc13f45bea (patch) | |
tree | 32e48fce4398797ed52de54131362a3413924cb2 /fs/hostfs | |
parent | e9193059b1b3733695d5b80e667778311695aa73 (diff) |
leak in hostfs_unlink()
Signed-off-by: Al Viro <viro@zeniv.linux.org.uk>
Diffstat (limited to 'fs/hostfs')
-rw-r--r-- | fs/hostfs/hostfs_kern.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/fs/hostfs/hostfs_kern.c b/fs/hostfs/hostfs_kern.c index 79783a0b2f4d..8130ce93a06a 100644 --- a/fs/hostfs/hostfs_kern.c +++ b/fs/hostfs/hostfs_kern.c | |||
@@ -622,11 +622,12 @@ int hostfs_unlink(struct inode *ino, struct dentry *dentry) | |||
622 | char *file; | 622 | char *file; |
623 | int err; | 623 | int err; |
624 | 624 | ||
625 | if ((file = dentry_name(dentry)) == NULL) | ||
626 | return -ENOMEM; | ||
627 | if (append) | 625 | if (append) |
628 | return -EPERM; | 626 | return -EPERM; |
629 | 627 | ||
628 | if ((file = dentry_name(dentry)) == NULL) | ||
629 | return -ENOMEM; | ||
630 | |||
630 | err = unlink_file(file); | 631 | err = unlink_file(file); |
631 | __putname(file); | 632 | __putname(file); |
632 | return err; | 633 | return err; |