mirror of
https://github.com/SoftEtherVPN/SoftEtherVPN.git
synced 2024-11-22 17:39:53 +03:00
remove DoNothing function (improves coverity reports)
This commit is contained in:
parent
73371087ef
commit
1c0b961aa5
@ -343,13 +343,8 @@ void OvsProceccRecvPacket(OPENVPN_SERVER *s, UDPPACKET *p, UINT protocol)
|
||||
data += sizeof(UINT);
|
||||
size -= sizeof(UINT);
|
||||
|
||||
if (size >= sizeof(ping_signature) &&
|
||||
Cmp(data, ping_signature, sizeof(ping_signature)) == 0)
|
||||
{
|
||||
// Ignore since a ping packet has been received
|
||||
DoNothing();
|
||||
}
|
||||
else
|
||||
if (size < sizeof(ping_signature) ||
|
||||
Cmp(data, ping_signature, sizeof(ping_signature)) != 0)
|
||||
{
|
||||
// Receive a packet!!
|
||||
if (se->Ipc != NULL)
|
||||
|
@ -1166,12 +1166,6 @@ void SetThreadName(UINT thread_id, char *name, void *param)
|
||||
#endif // OS_WIN32
|
||||
}
|
||||
|
||||
// Do Nothing
|
||||
UINT DoNothing()
|
||||
{
|
||||
return g_zero;
|
||||
}
|
||||
|
||||
// Thread creation (pool)
|
||||
THREAD *NewThreadNamed(THREAD_PROC *thread_proc, void *param, char *name)
|
||||
{
|
||||
@ -1185,11 +1179,6 @@ THREAD *NewThreadNamed(THREAD_PROC *thread_proc, void *param, char *name)
|
||||
return NULL;
|
||||
}
|
||||
|
||||
if (IsTrackingEnabled() == false)
|
||||
{
|
||||
DoNothing();
|
||||
}
|
||||
|
||||
Inc(thread_count);
|
||||
|
||||
LockSk(thread_pool);
|
||||
|
@ -270,7 +270,6 @@ void GetHomeDirW(wchar_t *path, UINT size);
|
||||
void AbortExit();
|
||||
void AbortExitEx(char *msg);
|
||||
void YieldCpu();
|
||||
UINT DoNothing();
|
||||
LIST *NewThreadList();
|
||||
void AddThreadToThreadList(LIST *o, THREAD *t);
|
||||
void DelThreadFromThreadList(LIST *o, THREAD *t);
|
||||
|
@ -9206,8 +9206,6 @@ void Win32NetworkTest()
|
||||
for (i = 0;i < (int)(LIST_NUM(o));i++)
|
||||
{
|
||||
IP_ADAPTER_INDEX_MAP *a = LIST_DATA(o, i);
|
||||
|
||||
DoNothing();
|
||||
}
|
||||
|
||||
ReleaseList(o);
|
||||
@ -14327,9 +14325,8 @@ void ConnectThreadForTcp(THREAD *thread, void *param)
|
||||
{
|
||||
ReleaseSock(p->CancelDisconnectSock);
|
||||
p->CancelDisconnectSock = NULL;
|
||||
LABEL_CANCEL:
|
||||
DoNothing();
|
||||
}
|
||||
LABEL_CANCEL:
|
||||
Unlock(p->CancelLock);
|
||||
|
||||
if (ssl_ret == false)
|
||||
|
Loading…
Reference in New Issue
Block a user