1
0
mirror of https://github.com/SoftEtherVPN/SoftEtherVPN.git synced 2024-09-13 07:13:00 +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
commit 8215de91f9
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

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