qemu-devel
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Qemu-devel] [Patch] [Resend] Fix sigsegv on Windows host


From: Consul
Subject: [Qemu-devel] [Patch] [Resend] Fix sigsegv on Windows host
Date: Fri, 27 Feb 2009 14:55:25 -0800
User-agent: Thunderbird 2.0.0.19 (Windows/20081209)

Is there a reason this patch has not been applied? I'm still getting sigsegv 
early in the boot of Windows images without it.
s->bounce has been VirtualAlloc'ed and should be VirtualFree'ed.

signed-off-by Alex Ivanov <address@hidden>

--- block.c     (revision 6653)
+++ block.c     (working copy)
@@ -1263,7 +1263,7 @@
     if (!s->is_write) {
         qemu_iovec_from_buffer(s->iov, s->bounce, s->iov->size);
     }
-    qemu_free(s->bounce);
+    qemu_vfree(s->bounce);
     s->this_aiocb->cb(s->this_aiocb->opaque, ret);
     qemu_aio_release(s->this_aiocb);
 }





reply via email to

[Prev in Thread] Current Thread [Next in Thread]