mirror of
https://gitlab.gnome.org/GNOME/glib.git
synced 2025-01-13 07:56:17 +01:00
Remove an unneeded NULL check
data->proxy cannot be NULL here, or we'd have crashed 10 lines up.
This commit is contained in:
parent
4c63303f9f
commit
cf7f50b28e
@ -1658,7 +1658,7 @@ get_connection_cb (GObject *source_object,
|
|||||||
|
|
||||||
if (data->cancellable != NULL)
|
if (data->cancellable != NULL)
|
||||||
g_object_unref (data->cancellable);
|
g_object_unref (data->cancellable);
|
||||||
if (data->proxy != NULL)
|
|
||||||
g_object_unref (data->proxy);
|
g_object_unref (data->proxy);
|
||||||
g_free (data);
|
g_free (data);
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user