Skip to content

Commit 41d2524

Browse files
committed
Fix after rebase
1 parent 73526db commit 41d2524

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Zend/zend_operators.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2033,7 +2033,7 @@ ZEND_API zend_result ZEND_FASTCALL concat_function(zval *result, zval *op1, zval
20332033
size_t op2_len = ZSTR_LEN(op2_string);
20342034
size_t result_len = op1_len + op2_len;
20352035
zend_string *result_str;
2036-
uint32_t flags = ZSTR_GET_COPYABLE_CONCAT_PROPERTIES_BOTH(Z_STR_P(op1), Z_STR_P(op2));
2036+
uint32_t flags = ZSTR_GET_COPYABLE_CONCAT_PROPERTIES_BOTH(op1_string, op2_string);
20372037

20382038
if (UNEXPECTED(op1_len > ZSTR_MAX_LEN - op2_len)) {
20392039
if (free_op1_string) zend_string_release(op1_string);

0 commit comments

Comments
 (0)