diff options
author | Al Viro <viro@zeniv.linux.org.uk> | 2010-01-25 06:05:54 -0500 |
---|---|---|
committer | Al Viro <viro@zeniv.linux.org.uk> | 2010-01-26 22:22:26 -0500 |
commit | 7e32b7bb734047c5e3cecf2e896b9cf8fc35d1e8 (patch) | |
tree | 5f26e01b5803489134e32b97d182fda160a34647 /fs/romfs | |
parent | ef52c75e4b1603f6e6102967ad90118205168eae (diff) |
fix leak in romfs_fill_super()
Signed-off-by: Al Viro <viro@zeniv.linux.org.uk>
Diffstat (limited to 'fs/romfs')
-rw-r--r-- | fs/romfs/super.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/fs/romfs/super.c b/fs/romfs/super.c index c117fa80d1e9..42d213546894 100644 --- a/fs/romfs/super.c +++ b/fs/romfs/super.c @@ -544,6 +544,7 @@ error: error_rsb_inval: ret = -EINVAL; error_rsb: + kfree(rsb); return ret; } |