mirror of
https://gitlab.gnome.org/GNOME/glib.git
synced 2025-01-13 15:56:23 +01:00
Merge branch 'dbus-address-null-check' into 'master'
gdbusaddress: Drop an unnecessary NULL check See merge request GNOME/glib!1624
This commit is contained in:
commit
5271b67e37
@ -982,7 +982,7 @@ g_dbus_address_get_stream_sync (const gchar *address,
|
||||
goto out;
|
||||
}
|
||||
|
||||
for (n = 0; addr_array != NULL && addr_array[n] != NULL; n++)
|
||||
for (n = 0; addr_array[n] != NULL; n++)
|
||||
{
|
||||
const gchar *addr = addr_array[n];
|
||||
GError *this_error;
|
||||
|
Loading…
Reference in New Issue
Block a user