fix segv on word set search

This commit is contained in:
Carsten Haitzler 2014-08-15 20:00:24 +09:00
parent d7ec90aefa
commit cd0bfa5d0c
1 changed files with 10 additions and 11 deletions

View File

@ -2597,19 +2597,18 @@ _codepoint_is_wordsep(const Eina_Unicode g)
0xff65,
0xe002a
};
size_t imax = sizeof(wordsep)/sizeof(wordsep[0]) - 1,
size_t imax = (sizeof(wordsep) / sizeof(wordsep[0])) - 1,
imin = 0;
while (imax >= imin)
{
size_t imid = (imin + imax) / 2;
if (wordsep[imid] == g)
return EINA_TRUE;
else if (wordsep[imid] < g)
imin = imid + 1;
else
imax = imid - 1;
}
while (imax >= imin)
{
size_t imid = (imin + imax) / 2;
if (wordsep[imid] == g) return EINA_TRUE;
else if (wordsep[imid] < g) imin = imid + 1;
else imax = imid - 1;
if ((imax == imin) || (imid == 0)) break;
}
return EINA_FALSE;
}