tabe Wed, 13 Jan 2010 06:55:03 +0000
Revision: http://svn.php.net/viewvc?view=revision&revision=293489
Log:
removed an unused variable
Changed paths:
U php/php-src/branches/PHP_5_2/ext/gd/libgd/gd_gif_out.c
U php/php-src/branches/PHP_5_3/ext/gd/libgd/gd_gif_out.c
U php/php-src/trunk/ext/gd/libgd/gd_gif_out.c
Modified: php/php-src/branches/PHP_5_2/ext/gd/libgd/gd_gif_out.c
===================================================================
--- php/php-src/branches/PHP_5_2/ext/gd/libgd/gd_gif_out.c 2010-01-13
05:51:24 UTC (rev 293488)
+++ php/php-src/branches/PHP_5_2/ext/gd/libgd/gd_gif_out.c 2010-01-13
06:55:03 UTC (rev 293489)
@@ -117,9 +117,8 @@
void gdImageGifCtx(gdImagePtr im, gdIOCtxPtr out)
{
gdImagePtr pim = 0, tim = im;
- int interlace, transparent, BitsPerPixel;
+ int interlace, BitsPerPixel;
interlace = im->interlace;
- transparent = im->transparent;
if (im->trueColor) {
/* Expensive, but the only way that produces an
acceptable result: mix down to a palette
Modified: php/php-src/branches/PHP_5_3/ext/gd/libgd/gd_gif_out.c
===================================================================
--- php/php-src/branches/PHP_5_3/ext/gd/libgd/gd_gif_out.c 2010-01-13
05:51:24 UTC (rev 293488)
+++ php/php-src/branches/PHP_5_3/ext/gd/libgd/gd_gif_out.c 2010-01-13
06:55:03 UTC (rev 293489)
@@ -117,9 +117,8 @@
void gdImageGifCtx(gdImagePtr im, gdIOCtxPtr out)
{
gdImagePtr pim = 0, tim = im;
- int interlace, transparent, BitsPerPixel;
+ int interlace, BitsPerPixel;
interlace = im->interlace;
- transparent = im->transparent;
if (im->trueColor) {
/* Expensive, but the only way that produces an
acceptable result: mix down to a palette
Modified: php/php-src/trunk/ext/gd/libgd/gd_gif_out.c
===================================================================
--- php/php-src/trunk/ext/gd/libgd/gd_gif_out.c 2010-01-13 05:51:24 UTC (rev
293488)
+++ php/php-src/trunk/ext/gd/libgd/gd_gif_out.c 2010-01-13 06:55:03 UTC (rev
293489)
@@ -117,9 +117,8 @@
void gdImageGifCtx(gdImagePtr im, gdIOCtxPtr out)
{
gdImagePtr pim = 0, tim = im;
- int interlace, transparent, BitsPerPixel;
+ int interlace, BitsPerPixel;
interlace = im->interlace;
- transparent = im->transparent;
if (im->trueColor) {
/* Expensive, but the only way that produces an
acceptable result: mix down to a palette
--
PHP CVS Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php