1
0
mirror of https://github.com/SoftEtherVPN/SoftEtherVPN.git synced 2024-11-09 03:00:41 +03:00

Merge PR #1018: Proto_OpenVPN.c: fix segmentation fault in OvsProceccRecvPacket()

This commit is contained in:
Davide Beatrici 2019-10-26 00:53:27 +02:00 committed by GitHub
commit 7349c4b16a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -681,10 +681,12 @@ void OvsProceccRecvPacket(OPENVPN_SERVER *s, UDPPACKET *p)
{
// Decrypt
size = OvsDecrypt(c->CipherDecrypt, c->MdRecv, c->IvRecv, data, recv_packet->Data, recv_packet->DataSize);
// Seek buffer after the packet ID
data += sizeof(UINT);
size -= sizeof(UINT);
if (size > sizeof(UINT))
{
// Seek buffer after the packet ID
data += sizeof(UINT);
size -= sizeof(UINT);
}
}
// Update of last communication time