qemu-devel
[Top][All Lists]
Advanced

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

[Qemu-devel] [PATCH] char-pty: avoid assertion warning


From: Peng Hao
Subject: [Qemu-devel] [PATCH] char-pty: avoid assertion warning
Date: Fri, 26 Jan 2018 07:40:04 +0800

g_source_unref(s->open_source) in pty_chr_timer may trigger a assertion like 
this:
g_source_unref: assertion 'source != NULL' failed.
pty_chr_update_read_handler_locked-->pty_chr_state(chr, 0) may be called
in pty_chr_timer, pty_chr_state(chr, 0) will call g_source_unref(s->open_source)
and set s->open_source=NULL.

Signed-off-by: Peng Hao <address@hidden>
---
 chardev/char-pty.c | 6 ++++--
 1 file changed, 4 insertions(+), 2 deletions(-)

diff --git a/chardev/char-pty.c b/chardev/char-pty.c
index 89315e6..da0f286 100644
--- a/chardev/char-pty.c
+++ b/chardev/char-pty.c
@@ -58,8 +58,10 @@ static gboolean pty_chr_timer(gpointer opaque)
 
     qemu_mutex_lock(&chr->chr_write_lock);
     s->timer_src = NULL;
-    g_source_unref(s->open_source);
-    s->open_source = NULL;
+    if (s->open_source) {
+        g_source_unref(s->open_source);
+        s->open_source = NULL;
+    }
     if (!s->connected) {
         /* Next poll ... */
         pty_chr_update_read_handler_locked(chr);
-- 
1.8.3.1




reply via email to

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