Skip to content

Commit fbf3a6b

Browse files
committed
Fixed bug #68676 (Explicit Double Free)
1 parent aa192f5 commit fbf3a6b

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

NEWS

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
PHP NEWS
1+
PHP NEWS
22
|||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
33
?? ??? 2014, PHP 5.5.21
44

@@ -16,6 +16,7 @@ PHP NEWS
1616
. Fixed bug #68583 (Crash in timeout thread). (Anatol)
1717
. Fixed bug #68594 (Use after free vulnerability in unserialize()).
1818
(CVE-2014-8142) (Stefan Esser)
19+
. Fixed bug #68676 (Explicit Double Free). (Kalle)
1920

2021
- cURL:
2122
. Fixed bug #67643 (curl_multi_getcontent returns '' when

Zend/zend_ts_hash.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -151,7 +151,7 @@ ZEND_API void zend_ts_hash_graceful_destroy(TsHashTable *ht)
151151

152152
#ifdef ZTS
153153
tsrm_mutex_free(ht->mx_reader);
154-
tsrm_mutex_free(ht->mx_reader);
154+
tsrm_mutex_free(ht->mx_writer);
155155
#endif
156156
}
157157

0 commit comments

Comments
 (0)