diff options
author | Ilia Alshanetsky <iliaa@php.net> | 2002-10-29 20:19:38 +0000 |
---|---|---|
committer | Ilia Alshanetsky <iliaa@php.net> | 2002-10-29 20:19:38 +0000 |
commit | 8c6316ef7b25f73569e79df45aafa1f31244ef8b (patch) | |
tree | 480cfbe45cb590e833286fc1114f9c7ba3a08368 | |
parent | 21e8efbb8709badb4164019b7e9ae6723c8d1a6e (diff) | |
download | php-git-8c6316ef7b25f73569e79df45aafa1f31244ef8b.tar.gz |
Corrected un-initialized variable usage.
-rw-r--r-- | ext/gd/libgd/gd.c | 2 |
1 files changed, 1 insertions, 1 deletions
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; |