File tree Expand file tree Collapse file tree 2 files changed +3
-2
lines changed Expand file tree Collapse file tree 2 files changed +3
-2
lines changed Original file line number Diff line number Diff line change 1
- PHP NEWS
1
+ PHP NEWS
2
2
|||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
3
3
?? ??? 2015, PHP 5.6.5
4
4
@@ -15,6 +15,7 @@ PHP NEWS
15
15
. Fixed bug #68583 (Crash in timeout thread). (Anatol)
16
16
. Fixed bug #65576 (Constructor from trait conflicts with inherited
17
17
constructor). (dunglas at gmail dot com)
18
+ . Fixed bug #68676 (Explicit Double Free). (Kalle)
18
19
19
20
- cURL:
20
21
. Fixed bug #67643 (curl_multi_getcontent returns '' when
Original file line number Diff line number Diff line change @@ -151,7 +151,7 @@ ZEND_API void zend_ts_hash_graceful_destroy(TsHashTable *ht)
151
151
152
152
#ifdef ZTS
153
153
tsrm_mutex_free (ht -> mx_reader );
154
- tsrm_mutex_free (ht -> mx_reader );
154
+ tsrm_mutex_free (ht -> mx_writer );
155
155
#endif
156
156
}
157
157
You can’t perform that action at this time.
0 commit comments