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

This commit is contained in:
Simon Rozman 2016-12-05 12:42:35 +01:00
parent dd144efa5f
commit 303350dec0

View File

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