8
0
mirror of https://github.com/FirebirdSQL/firebird.git synced 2025-01-23 04:03:04 +01:00

Fixed my error (case when eol follows immediately after '--')

This commit is contained in:
hvlad 2018-04-10 17:26:52 +03:00
parent a85437ae42
commit 1f4d06a1d5

View File

@ -342,9 +342,9 @@ bool Parser::yylexSkipSpaces()
lex.ptr++;
while (lex.ptr < lex.end)
{
lex.ptr++;
if (yylexSkipEol())
break;
lex.ptr++;
}
if (lex.ptr >= lex.end)
return false;