eap::peer_ttls::end_session() fixed to call method's end_session() method

This commit is contained in:
Simon Rozman 2016-12-05 13:17:38 +01:00
parent 1162ccae3f
commit 281c8a7119

View File

@ -233,7 +233,7 @@ void eap::peer_ttls::end_session(_In_ EAP_SESSION_HANDLE hSession)
// End the session.
session *s = static_cast<session*>(hSession);
//s->end(ppEapError);
s->m_method->end_session();
delete s;
}