From: Samuel Ortiz Date: Thu, 12 Aug 2010 11:26:58 +0000 (+0200) Subject: Both host and domain provider strings should not be NULL X-Git-Tag: 0.57~1 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=ee279b3e073b895a0fc8127c270416aa23089d99;p=platform%2Fupstream%2Fconnman.git Both host and domain provider strings should not be NULL --- diff --git a/src/provider.c b/src/provider.c index f7a1601..40c2750 100644 --- a/src/provider.c +++ b/src/provider.c @@ -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; }