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.
1 parent 6d3fa65 commit 05033c9Copy full SHA for 05033c9
NEWS
@@ -9,6 +9,10 @@ PHP NEWS
9
. Fixed bug #70484 (selectordinal doesn't work with named parameters).
10
(Anatol)
11
12
+- OpenSSL:
13
+ . Fixed bug #72140 (segfault after calling ERR_free_strings()).
14
+ (Jakub Zelenka)
15
+
16
26 May 2016, PHP 5.6.22
17
18
- Core:
ext/openssl/openssl.c
@@ -1278,6 +1278,9 @@ PHP_MSHUTDOWN_FUNCTION(openssl)
1278
EVP_cleanup();
1279
1280
#if OPENSSL_VERSION_NUMBER >= 0x00090805f
1281
+ /* prevent accessing locking callback from unloaded extension */
1282
+ CRYPTO_set_locking_callback(NULL);
1283
+ /* free allocated error strings */
1284
ERR_free_strings();
1285
#endif
1286
0 commit comments