[<prev] [next>] [day] [month] [year] [list]
Message-ID: <4D9EBEC7.5070504@sx.jp.nec.com>
Date: Fri, 08 Apr 2011 16:52:39 +0900
From: Kazuya Mio <k-mio@...jp.nec.com>
To: ext4 <linux-ext4@...r.kernel.org>, Theodore Tso <tytso@....edu>
Subject: [PATCH 07/11] e4defrag: Fix memory leak in file_defrag()
'donor_list' is allocated in get_file_extents(), but it's not freed.
This patch fixes it.
Signed-off-by: Kazuya Mio <k-mio@...jp.nec.com>
---
misc/e4defrag.c | 1 +
1 file changed, 1 insertion(+)
diff --git a/misc/e4defrag.c b/misc/e4defrag.c
index f4ced9a..ba0d424 100644
--- a/misc/e4defrag.c
+++ b/misc/e4defrag.c
@@ -1191,6 +1191,7 @@ out:
if (donor_fd != -1)
close(donor_fd);
free_ext(orig_list);
+ free_ext(donor_list);
free_exts_group(orig_group_head);
return 0;
}
--
To unsubscribe from this list: send the line "unsubscribe linux-ext4" in
the body of a message to majordomo@...r.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Powered by blists - more mailing lists