tony2001                Thu Jun  1 13:45:26 2006 UTC

  Modified files:              (Branch: PHP_5_2)
    /php-src/ext/standard       filters.c 
  Log:
  MFH: nuke unused variable
  
  
http://cvs.php.net/viewcvs.cgi/php-src/ext/standard/filters.c?r1=1.44.2.6&r2=1.44.2.6.2.1&diff_format=u
Index: php-src/ext/standard/filters.c
diff -u php-src/ext/standard/filters.c:1.44.2.6 
php-src/ext/standard/filters.c:1.44.2.6.2.1
--- php-src/ext/standard/filters.c:1.44.2.6     Mon Apr 17 19:26:04 2006
+++ php-src/ext/standard/filters.c      Thu Jun  1 13:45:26 2006
@@ -20,7 +20,7 @@
    +----------------------------------------------------------------------+
 */
 
-/* $Id: filters.c,v 1.44.2.6 2006/04/17 19:26:04 pollita Exp $ */
+/* $Id: filters.c,v 1.44.2.6.2.1 2006/06/01 13:45:26 tony2001 Exp $ */
 
 #include "php.h"
 #include "php_globals.h"
@@ -470,7 +470,6 @@
        register size_t ocnt, icnt;
        register unsigned char *ps, *pd;
        register unsigned int line_ccnt;
-       size_t nbytes_written;
 
        if (in_pp == NULL || in_left_p == NULL) { 
                return php_conv_base64_encode_flush(inst, in_pp, in_left_p, 
out_pp, out_left_p);
@@ -481,7 +480,6 @@
        ps = (unsigned char *)(*in_pp);
        icnt = *in_left_p;
        line_ccnt = inst->line_ccnt;
-       nbytes_written = 0;
 
        /* consume the remainder first */
        switch (inst->erem_len) {

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

Reply via email to