Both host and domain provider strings should not be NULL
authorSamuel Ortiz <sameo@linux.intel.com>
Thu, 12 Aug 2010 11:26:58 +0000 (13:26 +0200)
committerSamuel Ortiz <sameo@linux.intel.com>
Thu, 12 Aug 2010 11:26:58 +0000 (13:26 +0200)
src/provider.c

index f7a1601..40c2750 100644 (file)
@@ -457,7 +457,7 @@ int __connman_provider_create_and_connect(DBusMessage *msg)
                dbus_message_iter_next(&array);
        }
 
-       if (host == NULL && domain == NULL) {
+       if (host == NULL || domain == NULL) {
                err = -EINVAL;
                goto failed;
        }