3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-04-06 17:44:08 +00:00
Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>
This commit is contained in:
Nikolaj Bjorner 2024-08-14 09:17:05 -07:00
parent ed17de56d2
commit 656545564d

View file

@ -69,7 +69,7 @@ public:
bool opt_stream_buffer::parse_token(char const* token) {
skip_whitespace();
char const* t = token;
while (*t && ch() == *t) {
while (*t && ch() && ch() == *t) {
next();
++t;
}