(svn r26041) -Fix: make variable initialization more obvious for humans and compilers.

This commit is contained in:
fonsinchen 2013-11-19 19:43:56 +00:00
parent 29d0c68bb0
commit 8852d63711
1 changed files with 1 additions and 1 deletions

View File

@ -801,7 +801,7 @@ static char *FormatString(char *buff, const char *str_arg, StringParameters *arg
/* We have to restore the original offset here to to read the correct values. */
args->offset = orig_offset;
}
WChar b;
WChar b = '\0';
uint next_substr_case_index = 0;
char *buf_start = buff;
std::stack<const char *> str_stack;