Fix uninitialized iterator

This commit is contained in:
Přemysl Eric Janouch 2018-11-01 19:28:51 +01:00
parent 292829852e
commit c9bffc6046
Signed by: p
GPG Key ID: A0420B94F92B9493
1 changed files with 1 additions and 1 deletions

View File

@ -1064,7 +1064,7 @@ fun load_bindings () {
// Stringization in the preprocessor is a bit limited, we want lisp-case
map<string, action> actions;
int a;
int a = 0;
for (auto p : g_action_names) {
string name;
for (; *p; p++)