. Fixed bug #79030 (Upgrade apache2handler's php_apache_sapi_get_request_time
to return usec). (Herbert256)
+- COM:
+ . Fixed bug #63208 (BSTR to PHP string conversion not binary safe). (cmb)
+
- Core:
+ . Fixed bug #79740 (serialize() and unserialize() methods can not be called
+ statically). (Nikita)
+ . Fixed bug #79783 (Segfault in php_str_replace_common). (Nikita)
. Fixed bug #79778 (Assertion failure if dumping closure with unresolved
static variable). (Nikita)
+ . Fixed bug #79779 (Assertion failure when assigning property of string
+ offset by reference). (Nikita)
+ . Fixed bug #79792 (HT iterators not removed if empty array is destroyed).
+ (Nikita)
-- COM:
- . Fixed bug #63208 (BSTR to PHP string conversion not binary safe). (cmb)
-
-- Curl:
- . Fixed bug #79741 (curl_setopt CURLOPT_POSTFIELDS asserts on object with
- declared properties). (Nikita)
-
- Fileinfo:
. Fixed bug #79756 (finfo_file crash (FILEINFO_MIME)). (cmb)
}
} while (++p != end);
}
- zend_hash_iterators_remove(ht);
- SET_INCONSISTENT(HT_DESTROYED);
- } else if (EXPECTED(!(HT_FLAGS(ht) & HASH_FLAG_INITIALIZED))) {
+ } else if (EXPECTED(HT_FLAGS(ht) & HASH_FLAG_UNINITIALIZED)) {
goto free_ht;
}
+ zend_hash_iterators_remove(ht);
+ SET_INCONSISTENT(HT_DESTROYED);
efree(HT_GET_DATA_ADDR(ht));
free_ht:
FREE_HASHTABLE(ht);