From: Ilia Alshanetsky Date: Tue, 29 Oct 2002 20:19:38 +0000 (+0000) Subject: Corrected un-initialized variable usage. X-Git-Tag: php-4.3.0RC1~437 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=8c6316ef7b25f73569e79df45aafa1f31244ef8b;p=php Corrected un-initialized variable usage. --- 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;