Skip to content

Commit

Permalink
#4134: Initialisation of _socketIndex in SSLManager (OpenSSL)
Browse files Browse the repository at this point in the history
  • Loading branch information
obiltschnig committed Oct 3, 2023
1 parent b4fd3be commit c488681
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion NetSSL_OpenSSL/src/SSLManager.cpp
Expand Up @@ -77,7 +77,8 @@ const bool SSLManager::VAL_FIPS_MODE(false);


SSLManager::SSLManager():
_contextIndex(SSL_CTX_get_ex_new_index(0, NULL, NULL, NULL, NULL))
_contextIndex(SSL_CTX_get_ex_new_index(0, NULL, NULL, NULL, NULL)),
_socketIndex(SSL_get_ex_new_index(0, NULL, NULL, NULL, NULL))
{
}

Expand Down

0 comments on commit c488681

Please sign in to comment.