diff options
author | Antony Dovgal <tony2001@php.net> | 2006-06-01 13:45:26 +0000 |
---|---|---|
committer | Antony Dovgal <tony2001@php.net> | 2006-06-01 13:45:26 +0000 |
commit | 0675e5eabb6ffb6a6febcff37d8ce2db2f00042a (patch) | |
tree | af5d6f08d72fadcf768a1a78e614ba9bcd6c0dc2 | |
parent | 48098f07747e1cd8336791f2bef6d9c20fb53901 (diff) | |
download | php-git-0675e5eabb6ffb6a6febcff37d8ce2db2f00042a.tar.gz |
MFH: nuke unused variable
-rw-r--r-- | ext/standard/filters.c | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/ext/standard/filters.c b/ext/standard/filters.c index cbf56c7966..704b42fe6b 100644 --- a/ext/standard/filters.c +++ b/ext/standard/filters.c @@ -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) { |