1
0
mirror of https://github.com/postgres/postgres.git synced 2025-05-02 11:44:50 +03:00

Fix small bug in headline generation.

Patch from Sushant Sinha <sushant354@gmail.com>
http://archives.postgresql.org/pgsql-hackers/2008-07/msg00785.php
This commit is contained in:
Teodor Sigaev 2008-10-17 17:41:16 +00:00
parent 95402c347e
commit feb4596697

View File

@ -107,7 +107,7 @@ hlCover(HLPRSTEXT * prs, QUERYTYPE * query, int *p, int *q)
ITEM *item = GETQUERY(query);
int pos = *p;
*q = 0;
*q = -1;
*p = 0x7fffffff;
for (j = 0; j < query->size; j++)
@ -129,7 +129,7 @@ hlCover(HLPRSTEXT * prs, QUERYTYPE * query, int *p, int *q)
item++;
}
if (*q == 0)
if (*q < 0)
return false;
item = GETQUERY(query);