Compare commits

...

1 Commits

Author SHA1 Message Date
Vasuki
90d6d6d9d5 "Added null check as fix for parodus crash" 2023-06-15 14:17:36 +05:30

View File

@@ -783,8 +783,7 @@ int createNopollConnection(noPollCtx *ctx, server_list_t *server_list)
}
#endif
}
if(conn_ctx.current_server->allow_insecure <= 0)
if(conn_ctx.current_server != NULL && conn_ctx.current_server->allow_insecure <= 0)
{
ParodusInfo("Connected to server over SSL\n");
OnboardLog("Connected to server over SSL\n");