/* Empty line */
goto skipline;
}
- *end = '\0';
- if (end >= line + strlen(line))
+ if (*end == '\0')
{
/* A line with only one word. Ignore silently. */
goto skipline;
}
+ *end = '\0';
starto = findwrd(end + 1, &end);
if (!starto)
{
- /* A line with only one word. Ignore silently. */
+ /* A line with only one word (+whitespace). Ignore silently. */
goto skipline;
}
*end = '\0';
- /* starti now points to the first word, and starto to the second
+ /*
+ * starti now points to the first word, and starto to the second
* word on the line, with a \0 terminator at the end of both words.
*/
- if (cur == d->len)
+ if (cur >= d->len)
{
if (d->len == 0)
{
- d->len = 16;
+ d->len = 64;
d->syn = (Syn *) palloc(sizeof(Syn) * d->len);
}
else
*found;
TSLexeme *res;
- if (len <= 0)
+ /* note: d->len test protects against Solaris bsearch-of-no-items bug */
+ if (len <= 0 || d->len <= 0)
PG_RETURN_POINTER(NULL);
key.in = lowerstr_with_len(in, len);