mirror of
https://gitlab.gnome.org/GNOME/glib.git
synced 2025-08-01 23:13:40 +02:00
Make sure the GTask
is freed on a graceful disconnect
This fixes the memory leak in the case the connection has been successfully closed by the peer.
This commit is contained in:
@@ -206,6 +206,8 @@ async_close_finish (GTask *task,
|
||||
g_task_return_error (task, error);
|
||||
else
|
||||
g_task_return_boolean (task, TRUE);
|
||||
|
||||
g_object_unref (task);
|
||||
}
|
||||
|
||||
|
||||
@@ -231,7 +233,6 @@ close_read_ready (GSocket *socket,
|
||||
else
|
||||
{
|
||||
async_close_finish (task, error);
|
||||
g_object_unref (task);
|
||||
return FALSE;
|
||||
}
|
||||
}
|
||||
|
Reference in New Issue
Block a user