qemu-devel.nongnu.org archive mirror
 help / color / mirror / Atom feed
* [Qemu-devel] [Patch] [Resend] Fix sigsegv on Windows host
@ 2009-02-27 22:55 Consul
  2009-03-02 20:37 ` Robert Riebisch
  0 siblings, 1 reply; 4+ messages in thread
From: Consul @ 2009-02-27 22:55 UTC (permalink / raw)
  To: qemu-devel

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 <void@aleksoft.net>

--- 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);
  }

^ permalink raw reply	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2009-03-03 19:35 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2009-02-27 22:55 [Qemu-devel] [Patch] [Resend] Fix sigsegv on Windows host Consul
2009-03-02 20:37 ` Robert Riebisch
2009-03-02 21:20   ` Anthony Liguori
2009-03-03 19:35     ` Robert Riebisch

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).