Fix to uninitialized ssock in ssl_sock_imp_common. (#3742)

This commit is contained in:
Amilcar Ubiera 2023-10-26 23:45:22 -04:00 committed by GitHub
parent e4cfc9b055
commit f2da44b720
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -950,7 +950,7 @@ static pj_bool_t ssock_on_accept_complete (pj_ssl_sock_t *ssock_parent,
int src_addr_len,
pj_status_t accept_status)
{
pj_ssl_sock_t *ssock;
pj_ssl_sock_t *ssock = NULL;
#ifndef SSL_SOCK_IMP_USE_OWN_NETWORK
pj_activesock_cb asock_cb;
pj_activesock_cfg asock_cfg;