1
0
mirror of https://github.com/SoftEtherVPN/SoftEtherVPN.git synced 2025-09-19 17:59:19 +03:00

Merge pull request #1747 from chipitsine/master

src/Cedar/Virtual.c: mute Coverity warning
This commit is contained in:
Ilya Shipitsin
2023-01-14 23:46:27 +06:00
committed by GitHub

View File

@ -4214,7 +4214,7 @@ bool NatTransactUdp(VH *v, NAT_ENTRY *n)
// Try to send data to the UDP socket // Try to send data to the UDP socket
while (block = GetNext(n->UdpSendQueue)) while (block = GetNext(n->UdpSendQueue))
{ {
UINT send_size; UINT send_size = 0;
bool is_nbtdgm = false; bool is_nbtdgm = false;
LIST *local_ip_list = NULL; LIST *local_ip_list = NULL;