raster pushed a commit to branch master. http://git.enlightenment.org/core/efl.git/commit/?id=d6f2b20998e2f6c6ec76ac7cf26ad17c3ec45764
commit d6f2b20998e2f6c6ec76ac7cf26ad17c3ec45764 Author: Carsten Haitzler (Rasterman) <[email protected]> Date: Thu Nov 8 15:14:01 2018 +0000 emotion modules - warn - fix possible uninit var --- src/lib/emotion/emotion_modules.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/lib/emotion/emotion_modules.c b/src/lib/emotion/emotion_modules.c index 868d223f55..5f079b2983 100644 --- a/src/lib/emotion/emotion_modules.c +++ b/src/lib/emotion/emotion_modules.c @@ -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--) --
