Commit:    685a6d9aab5fe9f8f66193b407e29126876b84c6
Author:    Pierre Joye <pierre....@gmail.com>         Fri, 26 Apr 2013 08:09:19 
+0200
Parents:   7b06189702e270f5bf98ee7d8537b28a83758ad6
Branches:  PHP-5.5 master

Link:       
http://git.php.net/?p=php-src.git;a=commitdiff;h=685a6d9aab5fe9f8f66193b407e29126876b84c6

Log:
#64710, kill unused vars

Bugs:
https://bugs.php.net/64710

Changed paths:
  M  ext/gd/libgd/gd.c


Diff:
diff --git a/ext/gd/libgd/gd.c b/ext/gd/libgd/gd.c
index 093e35a..794d276 100644
--- a/ext/gd/libgd/gd.c
+++ b/ext/gd/libgd/gd.c
@@ -2352,8 +2352,6 @@ void gdImageCopyResized (gdImagePtr dst, gdImagePtr src, 
int dstX, int dstY, int
        int colorMap[gdMaxColors];
        /* Stretch vectors */
        int *stx, *sty;
-       /* We only need to use floating point to determine the correct stretch 
vector for one line's worth. */
-       double accum;
        
        if (overflow2(sizeof(int), srcW)) {
                return;
@@ -2364,7 +2362,6 @@ void gdImageCopyResized (gdImagePtr dst, gdImagePtr src, 
int dstX, int dstY, int
 
        stx = (int *) gdMalloc (sizeof (int) * srcW);
        sty = (int *) gdMalloc (sizeof (int) * srcH);
-       accum = 0;
 
        /* Fixed by Mao Morimoto 2.0.16 */
        for (i = 0; (i < srcW); i++) {


--
PHP CVS Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

Reply via email to