summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAntony Dovgal <tony2001@php.net>2006-06-01 13:45:16 +0000
committerAntony Dovgal <tony2001@php.net>2006-06-01 13:45:16 +0000
commit3e5407b16dedd1b22bd95c35415cc47a9c77a056 (patch)
tree1bf1de83316c7c34517b3e19d6fd3f3b2928777c
parent12a2d02b997244e4bc89f85c7668026046a186b8 (diff)
downloadphp-git-3e5407b16dedd1b22bd95c35415cc47a9c77a056.tar.gz
nuke unused variable
-rw-r--r--ext/standard/filters.c2
1 files changed, 0 insertions, 2 deletions
diff --git a/ext/standard/filters.c b/ext/standard/filters.c
index f16a2ec9f8..a42c48fc4f 100644
--- a/ext/standard/filters.c
+++ b/ext/standard/filters.c
@@ -547,7 +547,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);
@@ -558,7 +557,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) {