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

Set an initialization value in Network.c to be conform with PR #275

This commit is contained in:
Moataz Elmasry 2018-02-01 00:10:04 +01:00
parent a5fa265811
commit 8cafa07d9c

View File

@ -13355,7 +13355,7 @@ void SetNoNeedToRead(SOCK *sock)
UINT SecureRecv(SOCK *sock, void *data, UINT size)
{
SOCKET s;
int ret, e = 0;
int ret, e = SSL_ERROR_NONE;
SSL *ssl;
#ifdef UNIX_SOLARIS