aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/eqn_term.c
diff options
context:
space:
mode:
authorIngo Schwarze <schwarze@openbsd.org>2015-01-01 15:36:08 +0000
committerIngo Schwarze <schwarze@openbsd.org>2015-01-01 15:36:08 +0000
commitd63e18d2a47de821b302e3d98f4dd17bdcab95f9 (patch)
treefd78b4b3ffdefcf47916b0dfa6a8cb24efb2a6e1 /eqn_term.c
parent24d115716dc1ebda43f32d59379e15eca1a026c2 (diff)
downloadmandoc-d63e18d2a47de821b302e3d98f4dd17bdcab95f9.tar.gz
mandoc-d63e18d2a47de821b302e3d98f4dd17bdcab95f9.tar.zst
mandoc-d63e18d2a47de821b302e3d98f4dd17bdcab95f9.zip
Don't dereference NULL pointers when formatting missing denominators,
subscripts, superscripts, or "from" or "to" arguments. Found by jsg@ with afl.
Diffstat (limited to 'eqn_term.c')
-rw-r--r--eqn_term.c21
1 files changed, 12 insertions, 9 deletions
diff --git a/eqn_term.c b/eqn_term.c
index 010a152e..5f2818b4 100644
--- a/eqn_term.c
+++ b/eqn_term.c
@@ -1,7 +1,7 @@
-/* $Id: eqn_term.c,v 1.7 2014/10/12 14:49:39 schwarze Exp $ */
+/* $Id: eqn_term.c,v 1.8 2015/01/01 15:36:08 schwarze Exp $ */
/*
* Copyright (c) 2011 Kristaps Dzonsons <kristaps@bsd.lv>
- * Copyright (c) 2014 Ingo Schwarze <schwarze@openbsd.org>
+ * Copyright (c) 2014, 2015 Ingo Schwarze <schwarze@openbsd.org>
*
* Permission to use, copy, modify, and distribute this software for any
* purpose with or without fee is hereby granted, provided that the above
@@ -79,14 +79,17 @@ eqn_box(struct termp *p, const struct eqn_box *bp)
bp->pos == EQNPOS_TO) ? "^" : "_");
p->flags |= TERMP_NOSPACE;
child = child->next;
- eqn_box(p, child);
- if (bp->pos == EQNPOS_FROMTO ||
- bp->pos == EQNPOS_SUBSUP) {
- p->flags |= TERMP_NOSPACE;
- term_word(p, "^");
- p->flags |= TERMP_NOSPACE;
- child = child->next;
+ if (child != NULL) {
eqn_box(p, child);
+ if (bp->pos == EQNPOS_FROMTO ||
+ bp->pos == EQNPOS_SUBSUP) {
+ p->flags |= TERMP_NOSPACE;
+ term_word(p, "^");
+ p->flags |= TERMP_NOSPACE;
+ child = child->next;
+ if (child != NULL)
+ eqn_box(p, child);
+ }
}
} else {
child = bp->first;