mirror of
https://gitlab.gnome.org/GNOME/glib.git
synced 2024-11-10 11:26:16 +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,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);
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user