mirror of
https://github.com/postgres/postgres.git
synced 2026-04-07 18:26:06 -04: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:
parent
95402c347e
commit
feb4596697
1 changed files with 2 additions and 2 deletions
|
|
@ -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);
|
||||
|
|
|
|||
Loading…
Reference in a new issue