Hi On Fri, Jan 26, 2018 at 12:40 AM, Peng Hao <peng.h...@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.h...@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 >