[Top][All Lists]
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[Qemu-devel] [PATCH 07/19] win32: fix memory leak
From: |
Stefan Hajnoczi |
Subject: |
[Qemu-devel] [PATCH 07/19] win32: fix memory leak |
Date: |
Tue, 6 Dec 2011 11:01:02 +0000 |
From: Zhi Hui Li <address@hidden>
string is allocated by g_malloc, will not be used after putenv, should be
free before return.
Paolo Bonzini <address@hidden> confirmed this is safe under Wine:
"1) the underlying Win32 APIs require separate arguments for the
variable and value; 2) even though in the end Wine stores the
environment as name=value
(http://source.winehq.org/source/dlls/ntdll/env.c), it does so in a
single consecutive block of memory, not as a char* array like POSIX
does. While (2) might apply only to Wine, (1) surely applies to Windows
as well."
Tested-by: Stefan Weil <address@hidden>
Reviewed-by: Paolo Bonzini <address@hidden>
Signed-off-by: Li Zhi Hui <address@hidden>
Signed-off-by: Stefan Hajnoczi <address@hidden>
---
os-win32.c | 7 +++++++
1 files changed, 7 insertions(+), 0 deletions(-)
diff --git a/os-win32.c b/os-win32.c
index 8ad5fa1..8523d8d 100644
--- a/os-win32.c
+++ b/os-win32.c
@@ -44,6 +44,13 @@ int setenv(const char *name, const char *value, int
overwrite)
char *string = g_malloc(length);
snprintf(string, length, "%s=%s", name, value);
result = putenv(string);
+
+ /* Windows takes a copy and does not continue to use our string.
+ * Therefore it can be safely freed on this platform. POSIX code
+ * typically has to leak the string because according to the spec it
+ * becomes part of the environment.
+ */
+ g_free(string);
}
return result;
}
--
1.7.7.3
- [Qemu-devel] [PULL 00/19] Trivial patches for 3 to 6 December 2011, Stefan Hajnoczi, 2011/12/06
- [Qemu-devel] [PATCH 05/19] configure: Print a banner comment at the top of config.log, Stefan Hajnoczi, 2011/12/06
- [Qemu-devel] [PATCH 10/19] pcie_aer: adjust do_pcie_aer_inejct_error -> do_pcie_aer_inject_error, Stefan Hajnoczi, 2011/12/06
- [Qemu-devel] [PATCH 08/19] fix typo: delete redundant semicolon, Stefan Hajnoczi, 2011/12/06
- [Qemu-devel] [PATCH 04/19] configure: Include #define name in check_define compiler error, Stefan Hajnoczi, 2011/12/06
- [Qemu-devel] [PATCH 09/19] fix spelling in hw sub directory, Stefan Hajnoczi, 2011/12/06
- [Qemu-devel] [PATCH 02/19] console: Fix console_putchar() for CSI J, Stefan Hajnoczi, 2011/12/06
- [Qemu-devel] [PATCH 06/19] net/socket.c : fix memory leak, Stefan Hajnoczi, 2011/12/06
- [Qemu-devel] [PATCH 07/19] win32: fix memory leak,
Stefan Hajnoczi <=
- [Qemu-devel] [PATCH 03/19] console: Fix qemu_default_pixelformat() for 24 bpp, Stefan Hajnoczi, 2011/12/06
- [Qemu-devel] [PATCH 13/19] Convert keymap file to U TF-8 encoding, Stefan Hajnoczi, 2011/12/06
- [Qemu-devel] [PATCH 11/19] configure: Pull linux-headers/asm symlink creation out of loop, Stefan Hajnoczi, 2011/12/06
- [Qemu-devel] [PATCH 12/19] Convert source files to UTF-8 encoding, Stefan Hajnoczi, 2011/12/06
- [Qemu-devel] [PATCH 14/19] linux-user/cpu-uname.c : Convert to UTF-8, Stefan Hajnoczi, 2011/12/06
- [Qemu-devel] [PATCH 16/19] Rename get_tls to tls_var, Stefan Hajnoczi, 2011/12/06
- [Qemu-devel] [PATCH 15/19] linux-user/arm/nwfpe/fpo pcode.h: Fix non-UTF-8 characters, Stefan Hajnoczi, 2011/12/06