Fixed an infinite loop in the report query parser
This commit is contained in:
parent
11a9063958
commit
4336ec3e8b
1 changed files with 3 additions and 1 deletions
|
|
@ -536,11 +536,13 @@ query_t::parser_t::parse_query_expr(lexer_t::token_t::kind_t tok_context,
|
|||
}
|
||||
|
||||
default:
|
||||
break;
|
||||
goto done;
|
||||
}
|
||||
|
||||
tok = lexer.peek_token();
|
||||
}
|
||||
done:
|
||||
;
|
||||
}
|
||||
|
||||
return limiter;
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue