From: Jouni Malinen Date: Sun, 15 Nov 2009 20:56:39 +0000 (+0200) Subject: WPS ER: Clear WPS protocol run on PutMessage failure X-Git-Tag: hostap_0_7_0~37 X-Git-Url: http://www.project-moonshot.org/gitweb/?p=libeap.git;a=commitdiff_plain;h=33417cd75c7d07e24c24edef68fae941365ecc07 WPS ER: Clear WPS protocol run on PutMessage failure --- diff --git a/src/wps/wps_er.c b/src/wps/wps_er.c index 86d2dff..2887f04 100644 --- a/src/wps/wps_er.c +++ b/src/wps/wps_er.c @@ -1408,6 +1408,10 @@ static void wps_er_http_put_message_cb(void *ctx, struct http_client *c, case HTTP_CLIENT_INVALID_REPLY: case HTTP_CLIENT_TIMEOUT: wpa_printf(MSG_DEBUG, "WPS ER: PutMessage failed"); + if (ap->wps) { + wps_deinit(ap->wps); + ap->wps = NULL; + } break; } http_client_free(ap->http);