Skip to content

Commit aa63449

Browse files
committed
Remove wrong commit committed by accident
1 parent 2702739 commit aa63449

File tree

3 files changed

+0
-17
lines changed

3 files changed

+0
-17
lines changed

Zend/zend_API.c

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3173,7 +3173,6 @@ ZEND_API zend_bool zend_is_callable_ex(zval *callable, zend_object *object, uint
31733173
}
31743174
return 1;
31753175
}
3176-
/* break missing intentionally */
31773176
if (callable_name) {
31783177
*callable_name = zval_get_string(callable);
31793178
}

Zend/zend_vm_def.h

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2735,10 +2735,6 @@ ZEND_VM_HANDLER(118, ZEND_INIT_USER_CALL, CONST, CONST|TMPVAR|CV)
27352735
zend_class_entry *called_scope;
27362736
zend_object *object;
27372737

2738-
if (OP2_TYPE & (IS_VAR|IS_CV)) {
2739-
ZVAL_DEREF(function_name);
2740-
}
2741-
27422738
if (zend_is_callable_ex(function_name, NULL, 0, NULL, &fcc, &error)) {
27432739
if (error) {
27442740
efree(error);

Zend/zend_vm_execute.h

Lines changed: 0 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -4587,10 +4587,6 @@ static int ZEND_FASTCALL ZEND_INIT_USER_CALL_SPEC_CONST_CONST_HANDLER(ZEND_OPCO
45874587
zend_class_entry *called_scope;
45884588
zend_object *object;
45894589

4590-
if (IS_CONST & (IS_VAR|IS_CV)) {
4591-
ZVAL_DEREF(function_name);
4592-
}
4593-
45944590
if (zend_is_callable_ex(function_name, NULL, 0, NULL, &fcc, &error)) {
45954591
if (error) {
45964592
efree(error);
@@ -7496,10 +7492,6 @@ static int ZEND_FASTCALL ZEND_INIT_USER_CALL_SPEC_CONST_CV_HANDLER(ZEND_OPCODE_
74967492
zend_class_entry *called_scope;
74977493
zend_object *object;
74987494

7499-
if (IS_CV & (IS_VAR|IS_CV)) {
7500-
ZVAL_DEREF(function_name);
7501-
}
7502-
75037495
if (zend_is_callable_ex(function_name, NULL, 0, NULL, &fcc, &error)) {
75047496
if (error) {
75057497
efree(error);
@@ -8654,10 +8646,6 @@ static int ZEND_FASTCALL ZEND_INIT_USER_CALL_SPEC_CONST_TMPVAR_HANDLER(ZEND_OPC
86548646
zend_class_entry *called_scope;
86558647
zend_object *object;
86568648

8657-
if ((IS_TMP_VAR|IS_VAR) & (IS_VAR|IS_CV)) {
8658-
ZVAL_DEREF(function_name);
8659-
}
8660-
86618649
if (zend_is_callable_ex(function_name, NULL, 0, NULL, &fcc, &error)) {
86628650
if (error) {
86638651
efree(error);

0 commit comments

Comments
 (0)