. Fixed bug #76839 (socket_recvfrom may return an invalid 'from' address
on MacOS). (Michael Meyer)
+- SPL:
+ . Fixed bug #77298 (segfault occurs when add property to unserialized empty
+ ArrayObject). (jhdxr)
+
- Standard:
. Fixed bug #77395 (segfault about array_multisort). (Laruence)
+ . Fixed bug #77439 (parse_str segfaults when inserting item into existing
+ array). (Nikita)
-10 Jan 2019, PHP 7.2.14
+10 Jan 2019, PHP 7.3.1
- Core:
- . Fixed bug #77369 (memcpy with negative length via crafted DNS response). (Stas)
+ . Fixed bug #76654 (Build failure on Mac OS X on 32-bit Intel). (Ryandesign)
. Fixed bug #71041 (zend_signal_startup() needs ZEND_API).
(Valentin V. Bartenev)
. Fixed bug #76046 (PHP generates "FE_FREE" opcode on the wrong line).
gpc_element_p = Z_INDIRECT_P(gpc_element_p);
}
if (Z_TYPE_P(gpc_element_p) != IS_ARRAY) {
- zval_ptr_dtor(gpc_element_p);
+ zval_ptr_dtor_nogc(gpc_element_p);
array_init(gpc_element_p);
+ } else {
+ SEPARATE_ARRAY(gpc_element_p);
}
}
}