mirror of
https://github.com/SoftEtherVPN/SoftEtherVPN.git
synced 2024-11-22 09:29:52 +03:00
Merge pull request #1832 from chipitsine/master
src/Cedar/Server.c: fix race condition
This commit is contained in:
commit
2fdd9ec4dc
@ -1092,10 +1092,15 @@ UINT GetServerCapsInt(SERVER *s, char *name)
|
||||
return 0;
|
||||
}
|
||||
|
||||
|
||||
Lock(s->CapsCacheLock);
|
||||
{
|
||||
Zero(&t, sizeof(t));
|
||||
GetServerCaps(s, &t);
|
||||
|
||||
ret = GetCapsInt(&t, name);
|
||||
}
|
||||
Unlock(s->CapsCacheLock);
|
||||
|
||||
return ret;
|
||||
}
|
||||
@ -1164,10 +1169,14 @@ void FlushServerCaps(SERVER *s)
|
||||
return;
|
||||
}
|
||||
|
||||
Lock(s->CapsCacheLock);
|
||||
{
|
||||
DestroyServerCapsCache(s);
|
||||
|
||||
Zero(&t, sizeof(t));
|
||||
GetServerCaps(s, &t);
|
||||
}
|
||||
Unlock(s->CapsCacheLock);
|
||||
}
|
||||
|
||||
// Get the Caps list for this server
|
||||
|
Loading…
Reference in New Issue
Block a user