3ee7e4de90
- version 3.17 - check: --init-csum-tree acutally does something useful, rebuilds the whole csum tree - /dev scanning for btrfs devices is gone - /proc/partitions scanning is gone, blkid is used exclusively - new subcommand subvolume sync - filesystem df: new options to set unit format - convert: allow to copy label from the origin, or specify a new one (not all local patches are upstream, maybe next time) OBS-URL: https://build.opensuse.org/request/show/259501 OBS-URL: https://build.opensuse.org/package/show/filesystems/btrfsprogs?expand=0&rev=176
29 lines
801 B
Diff
29 lines
801 B
Diff
From bf9a3acde396575b141d9ac549aaf83466c0ab91 Mon Sep 17 00:00:00 2001
|
|
From: Qu Wenruo <quwenruo@cn.fujitsu.com>
|
|
Date: Wed, 19 Mar 2014 06:10:02 +0000
|
|
Subject: [PATCH 07/42] btrfs-progs: Fix memleak in get_raid56_used()
|
|
|
|
Fix memleak in get_raid56_used().
|
|
|
|
Signed-off-by: Qu Wenruo <quwenruo@cn.fujitsu.com>
|
|
Signed-off-by: David Sterba <dsterba@suse.cz>
|
|
---
|
|
cmds-fi-disk_usage.c | 1 +
|
|
1 file changed, 1 insertion(+)
|
|
|
|
diff --git a/cmds-fi-disk_usage.c b/cmds-fi-disk_usage.c
|
|
index edada5bbcf6b..736294eea3da 100644
|
|
--- a/cmds-fi-disk_usage.c
|
|
+++ b/cmds-fi-disk_usage.c
|
|
@@ -352,6 +352,7 @@ static int get_raid56_used(int fd, u64 *raid5_used, u64 *raid6_used)
|
|
if (p->type & BTRFS_BLOCK_GROUP_RAID6)
|
|
(*raid6_used) += p->size / (p->num_stripes -2);
|
|
}
|
|
+ free(info_ptr);
|
|
|
|
return 0;
|
|
|
|
--
|
|
2.1.1
|
|
|