[PATCH] Corrected a small memory leak when displaying partition information
Matt Davis
mattdavis9 at gmail.com
Sun Apr 27 00:31:39 UTC 2008
Deallocated a very small memory allocation that occurs in a for loop.
This occurred during output of partition numbers.
---
parted/parted.c | 1 +
1 files changed, 1 insertions(+), 0 deletions(-)
diff --git a/parted/parted.c b/parted/parted.c
index 46999f5..723e8eb 100644
--- a/parted/parted.c
+++ b/parted/parted.c
@@ -1496,6 +1496,7 @@ do_print (PedDevice** dev)
//PED_ASSERT (row.cols == caption.cols)
table_add_row_from_strlist (table, row);
str_list_destroy (row);
+ ped_free (tmp);
}
table_rendered = table_render (table);
--
1.5.1.5
--82I3+IH0IqGh5yIs--
More information about the parted-devel
mailing list