From: Richard W.M. Jones Date: Tue, 12 Apr 2011 17:05:35 +0000 (+0100) Subject: inspect: Fix some small memory leaks in Windows inspection. X-Git-Tag: 1.10.0~5 X-Git-Url: http://git.annexia.org/?p=libguestfs.git;a=commitdiff_plain;h=88ff38dab607f7218756ce87e014c0e699e162f8 inspect: Fix some small memory leaks in Windows inspection. Found using valgrind. --- 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) {