1
0
Fork 0
mirror of git://git.code.sf.net/p/cdesktopenv/code synced 2025-02-15 04:32:24 +00:00

dtimsstart: Fix brackets on previous coverity fix

This commit is contained in:
Peter Howkins 2018-04-30 01:47:53 +01:00
parent f2c6a48d72
commit ac168d8918

View file

@ -336,7 +336,7 @@ int make_new_environ(oenv, sel)
}
# endif /* old_hpux */
for (i = 0; i < num && (p = unsetp[i]); i++) {
if (strcmp(p, xmod) == 0 || (xinput && strcmp(p, xinput)) == 0)
if (strcmp(p, xmod) == 0 || (xinput && (strcmp(p, xinput) == 0)))
continue;
if (oenv->set) {
for (ep2 = oenv->set; ep2->name; ep2++)