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

Merge pull request #1757 from domosekai/domosekai-patch-1

Cedar/Proto_PPP: Fix memory leak
This commit is contained in:
Ilya Shipitsin 2023-01-31 01:52:07 +06:00 committed by GitHub
commit 064d211fab
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -2457,6 +2457,7 @@ bool PPPSendAndRetransmitRequest(PPP_SESSION *p, USHORT protocol, PPP_LCP *c)
if (PPPSendPacketEx(p, pp, false) == false)
{
PPPSetStatus(p, PPP_STATUS_FAIL);
FreePPPPacket(pp);
WHERE;
return false;
}