We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent debb3aa commit 66daeb0Copy full SHA for 66daeb0
contrib/tsearch2/stopword.c
@@ -48,7 +48,7 @@ readstoplist(text *in, StopList * s)
48
while (fgets(buf, sizeof(buf), hin))
49
{
50
pbuf = buf;
51
- while( !isspace( *pbuf ) )
+ while( *pbuf && !isspace( *pbuf ) )
52
pbuf++;
53
*pbuf = '\0';
54
0 commit comments