From e910bbf14404f55ec2e18a571a0f62c1e8e78c72 Mon Sep 17 00:00:00 2001 From: David Carlier Date: Thu, 4 Dec 2025 23:25:29 +0000 Subject: [PATCH] ext/gd: fix build --- ext/gd/gd.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ext/gd/gd.c b/ext/gd/gd.c index 35c1b8b50a7..2456afa15c7 100644 --- a/ext/gd/gd.c +++ b/ext/gd/gd.c @@ -2976,7 +2976,7 @@ static void php_imagechar(INTERNAL_FUNCTION_PARAMETERS, int mode) zend_long X, Y, COL; zend_string *C; gdImagePtr im; - int ch = 0, col, i, l = 0; + int ch = 0, col, i; unsigned int x, y; size_t l = 0; unsigned char *str = NULL;