8
0
mirror of https://github.com/FirebirdSQL/firebird.git synced 2025-01-23 02:03:04 +01:00
This commit is contained in:
Adriano dos Santos Fernandes 2016-11-21 22:19:49 -02:00
parent 0cf8d887a1
commit 2388af42f6

View File

@ -1206,7 +1206,7 @@ void Parser::yyerrorIncompleteCmd()
void Parser::check_bound(const char* const to, const char* const string)
{
if ((to - string) >= Parser::MAX_TOKEN_LEN)
yyabandon(yyposn, -104, isc_token_too_long); //// FIXME:
yyabandon(yyposn, -104, isc_token_too_long);
}
void Parser::check_copy_incr(char*& to, const char ch, const char* const string)