pEapOutput Prefast specifier for process_request_packet() methods changed

This commit is contained in:
2016-10-24 14:55:31 +02:00
parent 2c91b6ca8c
commit e7e1a6735d
14 changed files with 14 additions and 14 deletions

View File

@@ -251,7 +251,7 @@ void eap::peer_ttls::process_request_packet(
_In_ EAP_SESSION_HANDLE hSession,
_In_bytecount_(dwReceivedPacketSize) const EapPacket *pReceivedPacket,
_In_ DWORD dwReceivedPacketSize,
_Inout_ EapPeerMethodOutput *pEapOutput)
_Out_ EapPeerMethodOutput *pEapOutput)
{
assert(dwReceivedPacketSize == ntohs(*(WORD*)pReceivedPacket->Length));
static_cast<session*>(hSession)->m_method->process_request_packet(pReceivedPacket, dwReceivedPacketSize, pEapOutput);