From 985e5ffdb01320193dd839157cc3aefd563e0268 Mon Sep 17 00:00:00 2001 From: Niels Dossche <7771979+nielsdos@users.noreply.github.com> Date: Mon, 1 Jul 2024 23:13:27 +0200 Subject: [PATCH] Remove doubled variable name from assignment --- ext/opcache/jit/zend_jit_helpers.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ext/opcache/jit/zend_jit_helpers.c b/ext/opcache/jit/zend_jit_helpers.c index de59349e5f2..c3e45f6b978 100644 --- a/ext/opcache/jit/zend_jit_helpers.c +++ b/ext/opcache/jit/zend_jit_helpers.c @@ -98,7 +98,7 @@ static ZEND_COLD void ZEND_FASTCALL zend_jit_invalid_method_call(zval *object) { zend_execute_data *execute_data = EG(current_execute_data); const zend_op *opline = EX(opline); - zval *function_name = function_name = RT_CONSTANT(opline, opline->op2);; + zval *function_name = RT_CONSTANT(opline, opline->op2); if (Z_TYPE_P(object) == IS_UNDEF && opline->op1_type == IS_CV) { zend_string *cv = EX(func)->op_array.vars[EX_VAR_TO_NUM(opline->op1.var)];