Skip to content

Commit 801cf66

Browse files
committed
Merge branch 'PHP-7.4'
* PHP-7.4: Fixed bug #80083
2 parents e3d0bc0 + 9c136f1 commit 801cf66

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

ext/opcache/Optimizer/zend_optimizer.c

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -886,6 +886,8 @@ uint32_t zend_optimizer_classify_function(zend_string *name, uint32_t num_args)
886886
return ZEND_FUNC_INDIRECT_VAR_ACCESS;
887887
} else if (zend_string_equals_literal(name, "get_defined_vars")) {
888888
return ZEND_FUNC_INDIRECT_VAR_ACCESS;
889+
} else if (zend_string_equals_literal(name, "db2_execute")) {
890+
return ZEND_FUNC_INDIRECT_VAR_ACCESS;
889891
} else if (zend_string_equals_literal(name, "func_num_args")) {
890892
return ZEND_FUNC_VARARG;
891893
} else if (zend_string_equals_literal(name, "func_get_arg")) {

0 commit comments

Comments
 (0)