From: Jaehyun Kim Date: Fri, 12 Jan 2018 09:38:45 +0000 (+0900) Subject: Handles the passphrase decryption failure case X-Git-Tag: submit/tizen/20180121.225846 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=refs%2Ftags%2Fsubmit%2Ftizen%2F20180121.225846;p=platform%2Fupstream%2Fconnman.git Handles the passphrase decryption failure case Change-Id: Id8a29b6156449bf3dd23f79a7224ab39e9599b82 Signed-off-by: Jaehyun Kim --- diff --git a/gsupplicant/supplicant.c b/gsupplicant/supplicant.c index 9b7e003..9a58e29 100755 --- a/gsupplicant/supplicant.c +++ b/gsupplicant/supplicant.c @@ -5232,11 +5232,13 @@ static void decryption_request_reply(DBusPendingCall *call, if (dbus_set_error_from_message(&error, reply)) { SUPPLICANT_DBG("decryption_request_reply() %s %s", error.name, error.message); dbus_error_free(&error); + ret = -EINVAL; goto done; } if (dbus_message_iter_init(reply, &args) == FALSE) { SUPPLICANT_DBG("dbus_message_iter_init() failed"); + ret = -EINVAL; goto done; } @@ -5251,6 +5253,7 @@ static void decryption_request_reply(DBusPendingCall *call, interface_add_network_result, data, data->interface); +done: if (ret < 0) { SUPPLICANT_DBG("AddNetwork failed %d", ret); callback_assoc_failed(decrypt_request_data.data->user_data); @@ -5259,7 +5262,6 @@ static void decryption_request_reply(DBusPendingCall *call, dbus_free(data); } -done: dbus_message_unref(reply); dbus_pending_call_unref(call);