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:
Sebastian Dröge 2020-08-18 10:13:04 +00:00
commit 5271b67e37

View File

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