From a9999190c6220a2105a571be8454134cb4a5c25e Mon Sep 17 00:00:00 2001 From: Pierre Joye Date: Tue, 7 Jan 2003 22:34:00 +0000 Subject: [PATCH] Fix line drawed twice (L. Atkinson) --- ext/gd/gd.c | 2 -- 1 file changed, 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; } /* }}} */ -- 2.50.1