projects
/
platform
/
kernel
/
linux-3.10.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
6f5bbff
)
Fix a leak in failure exit in 9p ->get_sb()
author
Al Viro
<viro@zeniv.linux.org.uk>
Wed, 6 May 2009 05:35:04 +0000
(
01:35
-0400)
committer
Al Viro
<viro@zeniv.linux.org.uk>
Sat, 9 May 2009 14:49:40 +0000
(10:49 -0400)
Signed-off-by: Al Viro <viro@zeniv.linux.org.uk>
fs/9p/vfs_super.c
patch
|
blob
|
history
diff --git
a/fs/9p/vfs_super.c
b/fs/9p/vfs_super.c
index
0d29a57
..
ab5547f
100644
(file)
--- a/
fs/9p/vfs_super.c
+++ b/
fs/9p/vfs_super.c
@@
-156,6
+156,7
@@
static int v9fs_get_sb(struct file_system_type *fs_type, int flags,
root = d_alloc_root(inode);
if (!root) {
+ iput(inode);
retval = -ENOMEM;
goto release_sb;
}