Fix memory leak in SOCKSv5 implementation

This commit is contained in:
Nicolas Dufresne 2010-09-22 13:11:59 -04:00
parent 99d57b5ce9
commit e7df1a4157

View File

@ -587,6 +587,7 @@ free_connect_data (ConnectAsyncData *data)
g_free (data->hostname);
g_free (data->username);
g_free (data->password);
g_free (data->buffer);
if (data->cancellable)
g_object_unref (data->cancellable);