network/http-launch: Make GList clients consistent (items valid always).

This commit is contained in:
luis 2015-05-05 13:45:49 +02:00
parent ebe2883488
commit 58a2c722d9

View file

@ -54,6 +54,10 @@ remove_client (Client * client)
{
g_print ("Removing connection %s\n", client->name);
G_LOCK (clients);
clients = g_list_remove (clients, client);
G_UNLOCK (clients);
g_free (client->name);
if (client->isource) {
@ -67,10 +71,6 @@ remove_client (Client * client)
g_object_unref (client->connection);
g_byte_array_unref (client->current_message);
G_LOCK (clients);
clients = g_list_remove (clients, client);
G_UNLOCK (clients);
g_slice_free (Client, client);
}