2003-03-06 14:10:16

by Alex Tomas

[permalink] [raw]
Subject: [PATCH] minor memleak in ext3 (catched by smatch)


This minor memory leak has been catched by smatch.
Thanks to Dan Carpenter!



--- linux/fs/ext3/super.c Mon Feb 24 17:47:45 2003
+++ super.c Thu Mar 6 17:09:31 2003
@@ -1154,7 +1154,7 @@
if (!bh) {
printk(KERN_ERR
"EXT3-fs: Can't read superblock on 2nd try.\n");
- return -EINVAL;
+ goto out_fail;
}
es = (struct ext3_super_block *)(((char *)bh->b_data) + offset);
sbi->s_es = es;