emotion modules - warn - fix possible uninit var

This commit is contained in:
Carsten Haitzler 2018-11-08 15:14:01 +00:00
parent 003323f244
commit d6f2b20998
1 changed files with 1 additions and 1 deletions

View File

@ -325,7 +325,7 @@ _find_mod(const char *name)
if ((!path) || (!path[0])) continue;
// path is /*/modulename/ARCH/module.* - we want "modulename"
found = 0;
p1 = p2 = NULL;
p1 = p2 = p3 = NULL;
for (p = path + strlen(path) - 1;
p > path;
p--)