Skip to content

Commit 24125f0

Browse files
committed
Fixed bug #68676 (Explicit Double Free)
1 parent 422f323 commit 24125f0

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
?? ??? 2015, PHP 5.6.5
44

@@ -15,6 +15,7 @@ PHP NEWS
1515
. Fixed bug #68583 (Crash in timeout thread). (Anatol)
1616
. Fixed bug #65576 (Constructor from trait conflicts with inherited
1717
constructor). (dunglas at gmail dot com)
18+
. Fixed bug #68676 (Explicit Double Free). (Kalle)
1819

1920
- cURL:
2021
. 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)