diff options
author | Ingo Schwarze <schwarze@openbsd.org> | 2014-12-16 01:22:59 +0000 |
---|---|---|
committer | Ingo Schwarze <schwarze@openbsd.org> | 2014-12-16 01:22:59 +0000 |
commit | 31a1b153596f42c4e583bc573ad2fd7b41651728 (patch) | |
tree | 14628bdcaab244c9aadbedfec3fbfdcd01156a5d /roff.c | |
parent | 52a3a69b975dd05a56837b3fc9f93cc8681d3282 (diff) | |
download | mandoc-31a1b153596f42c4e583bc573ad2fd7b41651728.tar.gz |
When a numerical condition errors out after consuming at least one
character of input, treat it as false, do not retry it as a string
comparison condition. This also fixes a read buffer overrun that
happened when the numerical condition advanced to the end of the
input line before erroring out, found by jsg@ with afl.
Diffstat (limited to 'roff.c')
-rw-r--r-- | roff.c | 7 |
1 files changed, 5 insertions, 2 deletions
@@ -1249,7 +1249,7 @@ out: static int roff_evalcond(struct roff *r, int ln, const char *v, int *pos) { - int wanttrue, number; + int number, savepos, wanttrue; if ('!' == v[*pos]) { wanttrue = 0; @@ -1282,10 +1282,13 @@ roff_evalcond(struct roff *r, int ln, const char *v, int *pos) break; } + savepos = *pos; if (roff_evalnum(r, ln, v, pos, &number, 0)) return((number > 0) == wanttrue); - else + else if (*pos == savepos) return(roff_evalstrcond(v, pos) == wanttrue); + else + return (0); } static enum rofferr |