aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--fs/qnx4/inode.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/fs/qnx4/inode.c b/fs/qnx4/inode.c
index 3fd121c7c30a..6b009548d2e0 100644
--- a/fs/qnx4/inode.c
+++ b/fs/qnx4/inode.c
@@ -256,7 +256,7 @@ static int qnx4_fill_super(struct super_block *s, void *data, int silent)
256 if (IS_ERR(root)) { 256 if (IS_ERR(root)) {
257 printk(KERN_ERR "qnx4: get inode failed\n"); 257 printk(KERN_ERR "qnx4: get inode failed\n");
258 ret = PTR_ERR(root); 258 ret = PTR_ERR(root);
259 goto out; 259 goto outb;
260 } 260 }
261 261
262 ret = -ENOMEM; 262 ret = -ENOMEM;
@@ -269,6 +269,8 @@ static int qnx4_fill_super(struct super_block *s, void *data, int silent)
269 269
270 outi: 270 outi:
271 iput(root); 271 iput(root);
272 outb:
273 kfree(qs->BitMap);
272 out: 274 out:
273 brelse(bh); 275 brelse(bh);
274 outnobh: 276 outnobh: