Skip to content

Commit

Permalink
Fix to uninitialized ssock in ssl_sock_imp_common. (#3742)
Browse files Browse the repository at this point in the history
  • Loading branch information
amubiera authored Oct 27, 2023
1 parent e4cfc9b commit f2da44b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pjlib/src/pj/ssl_sock_imp_common.c
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down

0 comments on commit f2da44b

Please sign in to comment.