From: Tom Lane Date: Thu, 12 Apr 2018 22:39:52 +0000 (-0400) Subject: Fix bogus affix-merging code. X-Git-Tag: REL9_3_23~23 X-Git-Url: http://git.postgresql.org/gitweb/?a=commitdiff_plain;h=ac8ea0f27f3f1c3f537b8a4d136fa7f76bc520dc;p=postgresql.git Fix bogus affix-merging code. NISortAffixes() compared successive compound affixes incorrectly, thus possibly failing to merge identical affixes, or (less likely) merging ones that shouldn't be merged. The user-visible effects of this are unclear, to me anyway. Per bug #15150 from Alexander Lakhin. It's been broken for a long time, so back-patch to all supported branches. Arthur Zakirov Discussion: https://postgr.es/m/152353327780.31225.13445405496721177988@wrigleys.postgresql.org --- diff --git a/src/backend/tsearch/spell.c b/src/backend/tsearch/spell.c index f5f14c8b1fd..f2cfabba1cb 100644 --- a/src/backend/tsearch/spell.c +++ b/src/backend/tsearch/spell.c @@ -1370,8 +1370,10 @@ NISortAffixes(IspellDict *Conf) if ((Affix->flagflags & FF_COMPOUNDFLAG) && Affix->replen > 0 && isAffixInUse(Conf, (char) Affix->flag)) { + bool issuffix = (Affix->type == FF_SUFFIX); + if (ptr == Conf->CompoundAffix || - ptr->issuffix != (ptr - 1)->issuffix || + issuffix != (ptr - 1)->issuffix || strbncmp((const unsigned char *) (ptr - 1)->affix, (const unsigned char *) Affix->repl, (ptr - 1)->len)) @@ -1379,7 +1381,7 @@ NISortAffixes(IspellDict *Conf) /* leave only unique and minimals suffixes */ ptr->affix = Affix->repl; ptr->len = Affix->replen; - ptr->issuffix = (Affix->type == FF_SUFFIX) ? true : false; + ptr->issuffix = issuffix; ptr++; } }