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
?? ??? 2014, PHP 5.5.21
4
4
@@ -16,6 +16,7 @@ PHP NEWS
16
16
. Fixed bug #68583 (Crash in timeout thread). (Anatol)
17
17
. Fixed bug #68594 (Use after free vulnerability in unserialize()).
18
18
(CVE-2014-8142) (Stefan Esser)
19
+ . Fixed bug #68676 (Explicit Double Free). (Kalle)
19
20
20
21
- cURL:
21
22
. 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