1
0
mirror of https://gitlab.gnome.org/GNOME/glib.git synced 2025-04-28 01:56:52 +02:00

Fix incorrect freeing of thread pool in GThreadedSocketService ()

This commit is contained in:
Ondrej Jirman 2009-05-30 08:23:46 +02:00 committed by Alexander Larsson
parent 31cb0bdcb0
commit bb4f7c48f9

@ -164,7 +164,7 @@ g_threaded_socket_service_finalize (GObject *object)
{
GThreadedSocketService *service = G_THREADED_SOCKET_SERVICE (object);
g_object_unref (service->priv->thread_pool);
g_thread_pool_free (service->priv->thread_pool, FALSE, TRUE);
G_OBJECT_CLASS (g_threaded_socket_service_parent_class)
->finalize (object);