diff options
| -rw-r--r-- | NEWS | 3 | ||||
| -rw-r--r-- | Zend/zend_ts_hash.c | 2 |
2 files changed, 3 insertions, 2 deletions
@@ -1,4 +1,4 @@ -PHP NEWS +PHP NEWS ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||| ?? ??? 2015, PHP 5.6.5 @@ -15,6 +15,7 @@ PHP NEWS . Fixed bug #68583 (Crash in timeout thread). (Anatol) . Fixed bug #65576 (Constructor from trait conflicts with inherited constructor). (dunglas at gmail dot com) + . Fixed bug #68676 (Explicit Double Free). (Kalle) - cURL: . Fixed bug #67643 (curl_multi_getcontent returns '' when diff --git a/Zend/zend_ts_hash.c b/Zend/zend_ts_hash.c index 100bcf188d..024f81752a 100644 --- a/Zend/zend_ts_hash.c +++ b/Zend/zend_ts_hash.c @@ -151,7 +151,7 @@ ZEND_API void zend_ts_hash_graceful_destroy(TsHashTable *ht) #ifdef ZTS tsrm_mutex_free(ht->mx_reader); - tsrm_mutex_free(ht->mx_reader); + tsrm_mutex_free(ht->mx_writer); #endif } |
