All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] btrfs: Fix memory leak in btrfs_read_fs_root_no_radix()
@ 2010-12-27  6:53 Tsutomu Itoh
  0 siblings, 0 replies; only message in thread
From: Tsutomu Itoh @ 2010-12-27  6:53 UTC (permalink / raw)
  To: Linux Btrfs

In btrfs_read_fs_root_no_radix(), 'root' is not freed if
btrfs_search_slot() returns error.

Signed-off-by: Tsutomu Itoh <t-itoh@jp.fujitsu.com>
---
 disk-io.c |    1 +
 1 file changed, 1 insertion(+)

diff -urNp linux-2.6.37-rc7/fs/btrfs/disk-io.c linux-2.6.37-rc7.new/fs/btrfs/disk-io.c
--- linux-2.6.37-rc7/fs/btrfs/disk-io.c 2010-12-22 04:26:40.000000000 +0900
+++ linux-2.6.37-rc7.new/fs/btrfs/disk-io.c     2010-12-27 15:21:19.000000000 +0900
@@ -1145,6 +1145,7 @@ struct btrfs_root *btrfs_read_fs_root_no
 	}
 	btrfs_free_path(path);
 	if (ret) {
+		kfree(root);
 		if (ret > 0)
 			ret = -ENOENT;
 		return ERR_PTR(ret);



^ permalink raw reply	[flat|nested] only message in thread

only message in thread, other threads:[~2010-12-27  6:53 UTC | newest]

Thread overview: (only message) (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2010-12-27  6:53 [PATCH] btrfs: Fix memory leak in btrfs_read_fs_root_no_radix() Tsutomu Itoh

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.