From def5059f44b7bf55f406c248930fca23b27841f5 Mon Sep 17 00:00:00 2001 From: Andrei Zmievski Date: Fri, 24 Nov 2000 00:12:19 +0000 Subject: [PATCH] Fix the arg array size. --- ext/pcre/php_pcre.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ext/pcre/php_pcre.c b/ext/pcre/php_pcre.c index 53cf7da06d..21d3da6b18 100644 --- a/ext/pcre/php_pcre.c +++ b/ext/pcre/php_pcre.c @@ -568,7 +568,7 @@ static int preg_do_repl_func(char *function_name, char *subject, int *offsets, i zval *retval_ptr; /* Function return value */ zval function; /* Function to call */ zval *function_ptr = &function; /* Pointer to function to call */ - zval **args[0]; /* Argument to pass to function */ + zval **args[1]; /* Argument to pass to function */ zval *subpats; /* Captured subpatterns */ int result_len; /* Return value length */ int i; -- 2.50.1