diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/oplist.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/oplist.c b/src/oplist.c index 0ad1d1c..122440f 100644 --- a/src/oplist.c +++ b/src/oplist.c @@ -508,6 +508,9 @@ static void parse_skip_ws(parse_ctx ctx) ctx->pos++; } } + if (ctx->pos >= ctx->end) { + break; + } } // break on any char that's not white space if (!(((*(ctx->pos) == ' ') || (*(ctx->pos) == '\t') || (*(ctx->pos) == '\r') || (*(ctx->pos) == '\n')))) { |