diff options
author | Pierre Joye <pajoye@php.net> | 2003-01-07 22:34:00 +0000 |
---|---|---|
committer | Pierre Joye <pajoye@php.net> | 2003-01-07 22:34:00 +0000 |
commit | a9999190c6220a2105a571be8454134cb4a5c25e (patch) | |
tree | c3ab693a2a7f2389a24e6b7aa559f52a14669f49 | |
parent | f4f313ff40477415aa979c87d66ce27d275feff0 (diff) | |
download | php-git-a9999190c6220a2105a571be8454134cb4a5c25e.tar.gz |
Fix line drawed twice (L. Atkinson)
-rw-r--r-- | ext/gd/gd.c | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/ext/gd/gd.c b/ext/gd/gd.c index 17493aa219..0a367e5a34 100644 --- a/ext/gd/gd.c +++ b/ext/gd/gd.c @@ -2149,8 +2149,6 @@ PHP_FUNCTION(imageline) else #endif gdImageLine(im, Z_LVAL_PP(x1), Z_LVAL_PP(y1), Z_LVAL_PP(x2), Z_LVAL_PP(y2), Z_LVAL_PP(col)); - - gdImageLine(im, Z_LVAL_PP(x1), Z_LVAL_PP(y1), Z_LVAL_PP(x2), Z_LVAL_PP(y2), Z_LVAL_PP(col)); RETURN_TRUE; } /* }}} */ |