Skip to content

Commit

Permalink
fix #7343
Browse files Browse the repository at this point in the history
Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>
  • Loading branch information
NikolajBjorner committed Aug 14, 2024
1 parent 83f47bd commit ed17de5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/opt/opt_parse.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ class opt_stream_buffer {
bool opt_stream_buffer::parse_token(char const* token) {
skip_whitespace();
char const* t = token;
while (ch() == *t) {
while (*t && ch() == *t) {
next();
++t;
}
Expand Down

0 comments on commit ed17de5

Please sign in to comment.