Avoid a deref-before-NULL-check warning

This commit is contained in:
Matthias Clasen 2011-06-14 10:04:06 -04:00
parent 339cac8fc7
commit 3dc34de0ff

View File

@ -944,7 +944,7 @@ g_dbus_address_get_stream_sync (const gchar *address,
last_error = NULL;
addr_array = g_strsplit (address, ";", 0);
if (addr_array[0] == NULL)
if (addr_array != NULL && addr_array[0] == NULL)
{
last_error = g_error_new_literal (G_IO_ERROR,
G_IO_ERROR_INVALID_ARGUMENT,