mirror of
https://github.com/postgres/postgres.git
synced 2025-06-17 17:02:08 +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:
@ -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);
|
||||
|
Reference in New Issue
Block a user