blob: f36093c08244671fef4639144bc1dae75257ddf8 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
--- modules/speller/default/affix.cpp.orig 2019-10-08 00:15:21 UTC
+++ modules/speller/default/affix.cpp
@@ -798,7 +798,10 @@ bool AffixMgr::suffix_check (const LookupInfo & linf,
if (se->check(linf, word, ci, gi, sfxopts, ppfx)) return true;
se = se->next;
}
-
+
+ if (word.size() == 0)
+ return false;
+
// now handle the general case
byte sp = *((const byte *)(word + word.size() - 1));
SfxEntry * sptr = sStart[sp];
|