diff mbox series

char-pty: avoid assertion warning

Message ID 1516923604-101518-1-git-send-email-peng.hao2@zte.com.cn
State New
Headers show
Series char-pty: avoid assertion warning | expand

Commit Message

Peng Hao Jan. 25, 2018, 11:40 p.m. UTC
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 <peng.hao2@zte.com.cn>
---
 chardev/char-pty.c | 6 ++++--
 1 file changed, 4 insertions(+), 2 deletions(-)

Comments

Marc-Andre Lureau Jan. 25, 2018, 3:52 p.m. UTC | #1
Hi

On Fri, Jan 26, 2018 at 12:40 AM, Peng Hao <peng.hao2@zte.com.cn> wrote:
> 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.

Peter already sent "[PATCH] chardev: fix incorrect unref of source",
queued by Paolo,
thanks

>
> Signed-off-by: Peng Hao <peng.hao2@zte.com.cn>
> ---
>  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
>
diff mbox series

Patch

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