Hi, Can you explain when this can happen? Is it related to your tests? On Mon, 2016-05-23 at 13:50 +0200, Victor Toso wrote: > --- > src/spice-channel.c | 5 ++++- > 1 file changed, 4 insertions(+), 1 deletion(-) > > diff --git a/src/spice-channel.c b/src/spice-channel.c > index c555f75..8b159f4 100644 > --- a/src/spice-channel.c > +++ b/src/spice-channel.c > @@ -1891,7 +1891,10 @@ error: > G_GNUC_INTERNAL > void spice_channel_wakeup(SpiceChannel *channel, gboolean cancel) > { > - GCoroutine *c = &channel->priv->coroutine; > + GCoroutine *c; > + > + g_return_if_fail (channel != NULL); why not use SPICE_IS_CHANNEL() ? > + c = &channel->priv->coroutine; > > if (cancel) > g_coroutine_condition_cancel(c); Pavel _______________________________________________ Spice-devel mailing list Spice-devel@xxxxxxxxxxxxxxxxxxxxx https://lists.freedesktop.org/mailman/listinfo/spice-devel