Fix memory leak in SOCKSv5 implementation

This commit is contained in:
Nicolas Dufresne
2010-09-22 13:11:59 -04:00
parent c39ce70756
commit b375e9da18

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);