From 8c6316ef7b25f73569e79df45aafa1f31244ef8b Mon Sep 17 00:00:00 2001 From: Ilia Alshanetsky Date: Tue, 29 Oct 2002 20:19:38 +0000 Subject: [PATCH] Corrected un-initialized variable usage. --- ext/gd/libgd/gd.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ext/gd/libgd/gd.c b/ext/gd/libgd/gd.c index 7f40749fd7..2d712a6db3 100644 --- a/ext/gd/libgd/gd.c +++ b/ext/gd/libgd/gd.c @@ -2216,7 +2216,7 @@ void gdImageSkewX (gdImagePtr dst, gdImagePtr src, int uRow, int iOffset, double } if (i < dst->sx) { - gdImageSetPixel (dst, i, uRow, pxlLeft); + gdImageSetPixel (dst, i, uRow, clrBack); } pxlOldLeft = clrBack; -- 2.50.1