- Standard:
. Fixed bug #70295 (Segmentation fault with setrawcookie). (Bob)
+- Reflection:
+ . Fixed bug causing bogus traces for ReflectionGenerator::getTrace(). (Bob)
+
20 Aug 2015, PHP 7.0.0 RC 1
- Core:
ZEND_API zend_execute_data *zend_generator_check_placeholder_frame(zend_execute_data *ptr)
{
- if (!ptr->func && ptr->prev_execute_data && Z_OBJ(ptr->This)) {
+ if (!ptr->func && Z_OBJ(ptr->This)) {
if (Z_OBJCE(ptr->This) == zend_ce_generator) {
zend_generator *generator = (zend_generator *) Z_OBJ(ptr->This);
zend_generator *root = (generator->node.children < 1 ? generator : generator->node.ptr.leaf)->node.ptr.root;