Re: [Spice-devel] [spice-server] channel: Fix leak in red_channel_remove_client

2017-09-18 Thread Frediano Ziglio
> > It was using g_list_remove_link() to remove an element from the > RedChannel::clients list while it really meant to be using > g_list_delete_link() which frees the memory associated with the link. > > Signed-off-by: Christophe Fergeau Acked-by: Frediano Ziglio

[Spice-devel] [spice-server] channel: Fix leak in red_channel_remove_client

2017-09-18 Thread Christophe Fergeau
It was using g_list_remove_link() to remove an element from the RedChannel::clients list while it really meant to be using g_list_delete_link() which frees the memory associated with the link. Signed-off-by: Christophe Fergeau --- server/red-channel.c | 2 +- 1 file