summaryrefslogtreecommitdiffstats
path: root/tbl_html.c
diff options
context:
space:
mode:
Diffstat (limited to 'tbl_html.c')
-rw-r--r--tbl_html.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/tbl_html.c b/tbl_html.c
index b892060f..13267dc5 100644
--- a/tbl_html.c
+++ b/tbl_html.c
@@ -63,7 +63,8 @@ print_tbl(struct html *h, const struct tbl_span *sp)
}
tt = print_otag(h, TAG_TD, 0, NULL);
if (dp) {
- print_text(h, dp->string);
+ if (dp->string)
+ print_text(h, dp->string);
dp = dp->next;
}
print_tagq(h, tt);