Remove an unneeded NULL check

data->proxy cannot be NULL here, or we'd have crashed 10 lines up.
This commit is contained in:
Matthias Clasen 2011-06-14 09:50:55 -04:00
parent 4c63303f9f
commit cf7f50b28e

View File

@ -1658,8 +1658,8 @@ get_connection_cb (GObject *source_object,
if (data->cancellable != NULL)
g_object_unref (data->cancellable);
if (data->proxy != NULL)
g_object_unref (data->proxy);
g_object_unref (data->proxy);
g_free (data);
}