mirror of
				https://gitlab.gnome.org/GNOME/glib.git
				synced 2025-10-31 16:32:18 +01:00 
			
		
		
		
	Avoid a deref-before-NULL-check warning
This commit is contained in:
		| @@ -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, | ||||
|   | ||||
		Reference in New Issue
	
	Block a user