We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 83f47bd commit ed17de5Copy full SHA for ed17de5
src/opt/opt_parse.cpp
@@ -69,7 +69,7 @@ class opt_stream_buffer {
69
bool opt_stream_buffer::parse_token(char const* token) {
70
skip_whitespace();
71
char const* t = token;
72
- while (ch() == *t) {
+ while (*t && ch() == *t) {
73
next();
74
++t;
75
}
0 commit comments