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_)
static const unsigned char base64enc_tab[65] =
"ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/";
int ii, io;
uint32_t v;
int rem;
int io = 0;
uint32_t v = 0;
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;
ch = in_[ii];
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