summaryrefslogtreecommitdiff
path: root/mkfs.c
diff options
context:
space:
mode:
authorSergei Trofimovich <slyfox@gentoo.org>2011-06-04 11:19:22 +0300
committerChris Mason <chris.mason@oracle.com>2011-10-25 09:18:58 -0400
commite06947319cf4558c26d9457a934eb992b34d93e4 (patch)
treee4d79b2525d0a4e640bfd419946763772f59aff1 /mkfs.c
parent8e4b7e883abfca81cd864808da729b2227cff34c (diff)
mkfs.btrfs: free buffers allocated by pretty_sizes
found by valgrind: ==2559== 16 bytes in 1 blocks are definitely lost in loss record 3 of 19 ==2559== at 0x4C2720E: malloc (vg_replace_malloc.c:236) ==2559== by 0x412F7E: pretty_sizes (utils.c:1054) ==2559== by 0x4179E9: main (mkfs.c:1395) Signed-off-by: Sergei Trofimovich <slyfox@gentoo.org> Signed-off-by: Hugo Mills <hugo@carfax.org.uk>
Diffstat (limited to 'mkfs.c')
-rw-r--r--mkfs.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/mkfs.c b/mkfs.c
index 428ec18f..5701c0ab 100644
--- a/mkfs.c
+++ b/mkfs.c
@@ -1175,6 +1175,7 @@ int main(int ac, char **av)
char *output = "output.img";
u64 num_of_meta_chunks = 0;
u64 size_of_data = 0;
+ char *pretty_buf;
while(1) {
int c;
@@ -1392,7 +1393,8 @@ raid_groups:
printf("fs created label %s on %s\n\tnodesize %u leafsize %u "
"sectorsize %u size %s\n",
label, first_file, nodesize, leafsize, sectorsize,
- pretty_sizes(btrfs_super_total_bytes(&root->fs_info->super_copy)));
+ pretty_buf = pretty_sizes(btrfs_super_total_bytes(&root->fs_info->super_copy)));
+ free(pretty_buf);
printf("%s\n", BTRFS_BUILD_VERSION);
btrfs_commit_transaction(trans, root);