1
0
Fork 0

freevxfs: fix memory leak in vxfs_read_fshead()

Every successful mount two structs vxfs_fsh were not released.

Signed-off-by: Krzysztof Błaszkowski <kb@sysmikro.com.pl>
Signed-off-by: Christoph Hellwig <hch@lst.de>
hifive-unleashed-5.1
Krzysztof Błaszkowski 2016-06-12 19:25:23 +02:00 committed by Christoph Hellwig
parent 1cce170179
commit 263040a1e7
1 changed files with 2 additions and 0 deletions

View File

@ -172,6 +172,8 @@ vxfs_read_fshead(struct super_block *sbp)
goto out_iput_ilist;
}
kfree(pfp);
kfree(sfp);
return 0;
out_iput_ilist: