]> granicus.if.org Git - php/commitdiff
MFH: nuke unused variable
authorAntony Dovgal <tony2001@php.net>
Thu, 1 Jun 2006 13:45:26 +0000 (13:45 +0000)
committerAntony Dovgal <tony2001@php.net>
Thu, 1 Jun 2006 13:45:26 +0000 (13:45 +0000)
ext/standard/filters.c

index cbf56c796678917c8823cd1da445b6c531087a3b..704b42fe6b1d3ee13c7477e1f0dd24f99f9f95cd 100644 (file)
@@ -470,7 +470,6 @@ static php_conv_err_t php_conv_base64_encode_convert(php_conv_base64_encode *ins
        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 @@ static php_conv_err_t php_conv_base64_encode_convert(php_conv_base64_encode *ins
        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) {