We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents b7c03d1 + 3d90a24 commit ce58ae5Copy full SHA for ce58ae5
ext/openssl/openssl.c
@@ -1324,13 +1324,14 @@ PHP_MSHUTDOWN_FUNCTION(openssl)
1324
#if OPENSSL_VERSION_NUMBER < 0x10100000L || defined (LIBRESSL_VERSION_NUMBER)
1325
EVP_cleanup();
1326
1327
+ /* prevent accessing locking callback from unloaded extension */
1328
+ CRYPTO_set_locking_callback(NULL);
1329
+
1330
#ifndef OPENSSL_NO_ENGINE
1331
/* Free engine list initialized by OPENSSL_config */
1332
ENGINE_cleanup();
1333
#endif
1334
- /* prevent accessing locking callback from unloaded extension */
- CRYPTO_set_locking_callback(NULL);
1335
/* free allocated error strings */
1336
ERR_free_strings();
1337
CONF_modules_free();
0 commit comments