-
Hervé Poussineau authored
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>Hervé Poussineau authoredWin32 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>
Loading