From: Andrei Zmievski Date: Fri, 24 Nov 2000 00:12:19 +0000 (+0000) Subject: Fix the arg array size. X-Git-Tag: php-4.0.4RC3~69 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=def5059f44b7bf55f406c248930fca23b27841f5;p=php Fix the arg array size. --- 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;