Commit 579aa5b4 authored by Simon Giesecke's avatar Simon Giesecke

Problem: non-loop-variables initialized via loop initializer

Solution: move initialization to declaration
parent d4cc5923
...@@ -884,11 +884,11 @@ encode_base64 (const unsigned char *in_, int in_len_, char *out_, int out_len_) ...@@ -884,11 +884,11 @@ encode_base64 (const unsigned char *in_, int in_len_, char *out_, int out_len_)
static const unsigned char base64enc_tab[65] = static const unsigned char base64enc_tab[65] =
"ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/"; "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/";
int ii, io; int io = 0;
uint32_t v; uint32_t v = 0;
int rem; int rem = 0;
for (io = 0, ii = 0, v = 0, rem = 0; ii < in_len_; ii++) { for (int ii = 0; ii < in_len_; ii++) {
unsigned char ch; unsigned char ch;
ch = in_[ii]; ch = in_[ii];
v = (v << 8) | ch; v = (v << 8) | ch;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment