Removed IS_TYPE_COPYABLE flag.

This commit is contained in:
Dmitry Stogov 2017-09-15 12:29:46 +03:00
parent 5b61c399fc
commit 12550b2c39

View File

@ -1214,7 +1214,7 @@ static void sccp_visit_instr(scdf_ctx *scdf, zend_op *opline, zend_ssa_op *ssa_o
if (!result) {
empty_partial_array(&zv);
} else {
Z_TYPE_INFO_P(result) = PARTIAL_ARRAY | ((IS_TYPE_REFCOUNTED | IS_TYPE_COPYABLE) << Z_TYPE_FLAGS_SHIFT);
Z_TYPE_INFO_P(result) = PARTIAL_ARRAY | (IS_TYPE_REFCOUNTED << Z_TYPE_FLAGS_SHIFT);
ZVAL_COPY_VALUE(&zv, result);
ZVAL_NULL(result);
}