1
0
mirror of https://github.com/php/php-src.git synced 2026-04-25 17:08:14 +02:00

Fix unused variable warning

This commit is contained in:
Nikita Popov
2018-02-16 15:31:54 +01:00
parent 1c68f54684
commit f61c01eeb1
2 changed files with 0 additions and 4 deletions
-2
View File
@@ -784,8 +784,6 @@ ZEND_VM_HELPER(zend_abstract_method_helper, ANY, ANY, zend_function *fbc)
ZEND_VM_HELPER(zend_undefined_function_helper, ANY, ANY, zval *function_name)
{
USE_OPLINE
SAVE_OPLINE();
zend_throw_error(NULL, "Call to undefined function %s()", Z_STRVAL_P(function_name));
HANDLE_EXCEPTION();
-2
View File
@@ -461,8 +461,6 @@ static ZEND_OPCODE_HANDLER_RET ZEND_FASTCALL zend_abstract_method_helper_SPEC(ze
static ZEND_OPCODE_HANDLER_RET ZEND_FASTCALL zend_undefined_function_helper_SPEC(zval *function_name ZEND_OPCODE_HANDLER_ARGS_DC)
{
USE_OPLINE
SAVE_OPLINE();
zend_throw_error(NULL, "Call to undefined function %s()", Z_STRVAL_P(function_name));
HANDLE_EXCEPTION();