[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[Qemu-devel] [PATCH for 2.1] qemu-char: initialize out_lock
From: |
Paolo Bonzini |
Subject: |
[Qemu-devel] [PATCH for 2.1] qemu-char: initialize out_lock |
Date: |
Wed, 25 Jun 2014 09:04:57 +0200 |
Otherwise, Windows fails with a deadlock.
Reported-by: Stefan Weil <address@hidden>
Signed-off-by: Paolo Bonzini <address@hidden>
---
qemu-char.c | 1 +
1 file changed, 1 insertion(+)
diff --git a/qemu-char.c b/qemu-char.c
index 2e50a10..17bd360 100644
--- a/qemu-char.c
+++ b/qemu-char.c
@@ -94,6 +94,7 @@ static QTAILQ_HEAD(CharDriverStateHead, CharDriverState)
chardevs =
CharDriverState *qemu_chr_alloc(void)
{
CharDriverState *chr = g_malloc0(sizeof(CharDriverState));
+ qemu_mutex_init(&chr->chr_write_lock);
return chr;
}
--
1.9.3
- [Qemu-devel] [PATCH for 2.1] qemu-char: initialize out_lock,
Paolo Bonzini <=