summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJouni Ahto <jah@php.net>2000-03-03 14:15:05 +0000
committerJouni Ahto <jah@php.net>2000-03-03 14:15:05 +0000
commitb053e6422fee27acae2fc5888890525bbc6a2298 (patch)
tree5f201c12efbafa763bbcf7c3c7943271e83a5858
parentdd4f37a4cfed47d92a475a949a1efbb2c6f60a7f (diff)
downloadphp-git-b053e6422fee27acae2fc5888890525bbc6a2298.tar.gz
(imagearc) - Fix #3706.
-rw-r--r--ext/gd/gd.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/gd/gd.c b/ext/gd/gd.c
index 66d6e1cb61..535c094b55 100644
--- a/ext/gd/gd.c
+++ b/ext/gd/gd.c
@@ -1103,7 +1103,7 @@ PHP_FUNCTION(imagearc)
GDLS_FETCH();
if (ARG_COUNT(ht) != 8 ||
- zend_get_parameters_ex(ht, 8, &IM, &CX, &CY, &W, &H, &ST, &E, &COL) == FAILURE)
+ zend_get_parameters_ex(8, &IM, &CX, &CY, &W, &H, &ST, &E, &COL) == FAILURE)
{
WRONG_PARAM_COUNT;
}