summaryrefslogtreecommitdiff
path: root/exec.c
diff options
context:
space:
mode:
authorHerve Poussineau <hpoussin@reactos.org>2010-01-24 21:23:56 +0000
committerAnthony Liguori <aliguori@us.ibm.com>2010-01-26 16:41:06 -0600
commitf8a83245d9ec685bc6aa6173d6765fe03e20688f (patch)
treeec0519bd357c16c937ac367dd0111d6f5f9b9d09 /exec.c
parenta35aed57bf47584b5f55b71acf8daba19decf12a (diff)
downloadqemu-f8a83245d9ec685bc6aa6173d6765fe03e20688f.tar.gz
win32: pair qemu_memalign() with qemu_vfree()
Win32 suffers from a very big memory leak when dealing with SCSI devices. Each read/write request allocates memory with qemu_memalign (ie VirtualAlloc) but frees it with qemu_free (ie free). Pair all qemu_memalign() calls with qemu_vfree() to prevent such leaks. Signed-off-by: Herve Poussineau <hpoussin@reactos.org> Signed-off-by: Anthony Liguori <aliguori@us.ibm.com>
Diffstat (limited to 'exec.c')
-rw-r--r--exec.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/exec.c b/exec.c
index 1190591e93..76831a194f 100644
--- a/exec.c
+++ b/exec.c
@@ -3309,7 +3309,7 @@ void cpu_physical_memory_unmap(void *buffer, target_phys_addr_t len,
if (is_write) {
cpu_physical_memory_write(bounce.addr, bounce.buffer, access_len);
}
- qemu_free(bounce.buffer);
+ qemu_vfree(bounce.buffer);
bounce.buffer = NULL;
cpu_notify_map_clients();
}