Skip to content

Commit 985e5ff

Browse files
committed
Remove doubled variable name from assignment
1 parent 72c8746 commit 985e5ff

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

ext/opcache/jit/zend_jit_helpers.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -98,7 +98,7 @@ static ZEND_COLD void ZEND_FASTCALL zend_jit_invalid_method_call(zval *object)
9898
{
9999
zend_execute_data *execute_data = EG(current_execute_data);
100100
const zend_op *opline = EX(opline);
101-
zval *function_name = function_name = RT_CONSTANT(opline, opline->op2);;
101+
zval *function_name = RT_CONSTANT(opline, opline->op2);
102102

103103
if (Z_TYPE_P(object) == IS_UNDEF && opline->op1_type == IS_CV) {
104104
zend_string *cv = EX(func)->op_array.vars[EX_VAR_TO_NUM(opline->op1.var)];

0 commit comments

Comments
 (0)