iliaa Tue Oct 29 15:19:38 2002 EDT Modified files: /php4/ext/gd/libgd gd.c Log: Corrected un-initialized variable usage. Index: php4/ext/gd/libgd/gd.c diff -u php4/ext/gd/libgd/gd.c:1.21 php4/ext/gd/libgd/gd.c:1.22 --- php4/ext/gd/libgd/gd.c:1.21 Mon Oct 28 20:15:44 2002 +++ php4/ext/gd/libgd/gd.c Tue Oct 29 15:19:38 2002 @@ -2216,7 +2216,7 @@ } if (i < dst->sx) { - gdImageSetPixel (dst, i, uRow, pxlLeft); + gdImageSetPixel (dst, i, uRow, clrBack); } pxlOldLeft = clrBack;
-- PHP CVS Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php