summaryrefslogtreecommitdiffstats
path: root/man_term.c
diff options
context:
space:
mode:
authorIngo Schwarze <schwarze@openbsd.org>2011-09-20 14:20:48 +0000
committerIngo Schwarze <schwarze@openbsd.org>2011-09-20 14:20:48 +0000
commit5a5b6607864337eb2f3c5c7a1827d0358b43be54 (patch)
tree6e908769188d785502a6667b9196022ebe68f4e5 /man_term.c
parent5636e76b60167512ce24afe65e9de4fa112c10e4 (diff)
downloadmandoc-5a5b6607864337eb2f3c5c7a1827d0358b43be54.tar.gz
Using user-defined macros, surprisingly, it is possible
to have *next*-line head arguments on the *same* input line. So .TP must not assume that a head argument with a matching input line number is a same-line argument (and access a NULL pointer). Bug found and fix tested by kristaps@ with groff_hdtbl(7).
Diffstat (limited to 'man_term.c')
-rw-r--r--man_term.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/man_term.c b/man_term.c
index 379a39ab..1d3d663a 100644
--- a/man_term.c
+++ b/man_term.c
@@ -640,7 +640,7 @@ pre_TP(DECL_ARGS)
/* Calculate offset. */
if (NULL != (nn = n->parent->head->child))
- if (nn->parent->line == nn->line)
+ if (nn->string && nn->parent->line == nn->line)
if ((ival = a2width(p, nn->string)) >= 0)
len = (size_t)ival;