LWN.net Logo

[PATCH] minor memleak in ext3 (catched by smatch)

From:  Alex Tomas <bzzz@tmi.comex.ru>
To:  linux-kernel@vger.kernel.org
Subject:  [PATCH] minor memleak in ext3 (catched by smatch)
Date:  06 Mar 2003 17:14:15 +0300
Cc:  dan carpenter <error27@email.com>, Andrew Morton <akpm@digeo.com>, ext2-devel@lists.sourceforge.net


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;

-
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html
Please read the FAQ at  http://www.tux.org/lkml/


(Log in to post comments)

Copyright © 2003, Eklektix, Inc.
Comments and public postings are copyrighted by their creators.
Linux is a registered trademark of Linus Torvalds