1
0
mirror of https://github.com/SoftEtherVPN/SoftEtherVPN.git synced 2024-09-19 18:20:40 +03:00

Fixing errors as per static analysis

This commit is contained in:
Evengard 2020-04-27 22:18:57 +03:00
parent 1bdd9a92bc
commit aa0ec4343c

View File

@ -744,11 +744,11 @@ bool PPPProcessLCPResponsePacket(PPP_SESSION *p, PPP_PACKET *pp, PPP_PACKET *req
USHORT* protocol = pp->Lcp->Data;
if (*protocol == PPP_PROTOCOL_IPCP || *protocol == PPP_PROTOCOL_IP)
{
p->IPv4_State == PPP_PROTO_STATUS_REJECTED;
p->IPv4_State = PPP_PROTO_STATUS_REJECTED;
}
if (*protocol == PPP_PROTOCOL_IPV6CP || *protocol == PPP_PROTOCOL_IPV6)
{
p->IPv6_State == PPP_PROTO_STATUS_REJECTED;
p->IPv6_State = PPP_PROTO_STATUS_REJECTED;
}
}
}
@ -1031,7 +1031,7 @@ bool PPPProcessIPCPResponsePacket(PPP_SESSION *p, PPP_PACKET *pp, PPP_PACKET *re
return true;
}
p->IPv4_State == PPP_PROTO_STATUS_CONFIG;
p->IPv4_State = PPP_PROTO_STATUS_CONFIG;
PPPGetIPAddressValueFromLCP(req->Lcp, PPP_IPCP_OPTION_IP, &prevAddrStruct);
prevAddr = IPToUINT(&prevAddrStruct);