From 88ff38dab607f7218756ce87e014c0e699e162f8 Mon Sep 17 00:00:00 2001 From: "Richard W.M. Jones" Date: Tue, 12 Apr 2011 18:05:35 +0100 Subject: [PATCH] inspect: Fix some small memory leaks in Windows inspection. Found using valgrind. --- src/inspect.c | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/inspect.c b/src/inspect.c index be98b0d..16baf0b 100644 --- a/src/inspect.c +++ b/src/inspect.c @@ -1689,6 +1689,7 @@ check_windows_system_registry (guestfs_h *g, struct inspect_fs *fs) if (STRCASEEQLEN (key, "\\DosDevices\\", 12) && c_isalpha (key[12]) && key[13] == ':') count++; + free (key); } fs->drive_mappings = calloc (2*count + 1, sizeof (char *)); @@ -1721,6 +1722,7 @@ check_windows_system_registry (guestfs_h *g, struct inspect_fs *fs) } free (blob); } + free (key); } /* Get the hostname. */ @@ -1738,6 +1740,7 @@ check_windows_system_registry (guestfs_h *g, struct inspect_fs *fs) goto out; } + free (values); values = hivex_node_values (h, node); for (i = 0; values[i] != 0; ++i) { -- 1.8.3.1