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

Cedar/Session.c: fix "use after free" in CleanupSession()

Fixes #1226.
This commit is contained in:
Ilya Shipitsin 2020-10-31 19:59:57 +01:00 committed by Davide Beatrici
parent a2d15615f3
commit bb2e2ff997

View File

@ -1223,6 +1223,9 @@ void CleanupSession(SESSION *s)
// Release the client connection options
if (s->ClientOption != NULL)
{
#ifdef OS_UNIX
UnixVLanSetState(s->ClientOption->DeviceName, false);
#endif
Free(s->ClientOption);
}
@ -1278,12 +1281,7 @@ void CleanupSession(SESSION *s)
{
FreePacketAdapter(s->PacketAdapter);
}
#ifdef OS_UNIX
if (s->ClientOption != NULL)
{
UnixVLanSetState(s->ClientOption->DeviceName, false);
}
#endif
if (s->OldTraffic != NULL)
{
FreeTraffic(s->OldTraffic);