]> granicus.if.org Git - postgresql/commitdiff
Fix possible use of uninitialised value in ts_headline()
authorTeodor Sigaev <teodor@sigaev.ru>
Fri, 8 Apr 2016 18:26:25 +0000 (21:26 +0300)
committerTeodor Sigaev <teodor@sigaev.ru>
Fri, 8 Apr 2016 18:26:25 +0000 (21:26 +0300)
Found during investigation of failure of skink buildfarm member and its
valgrind report.

Backpatch to all supported branches

src/backend/tsearch/wparser_def.c

index b2da46c5872442e94bde74558d25265fedff0f61..edaf0424814c1fd8a80b9b4c942f1c027981fafa 100644 (file)
@@ -2439,6 +2439,8 @@ mark_hl_words(HeadlineParsedText *prs, TSQuery query, int highlight,
                        }
                        else
                        {                                       /* shorter cover :((( */
+                               if (i > q)
+                                       i = q;
                                for (; curlen > min_words; i--)
                                {
                                        if (!NONWORDTOKEN(prs->words[i].type))