diff options
author | Kristaps Dzonsons <kristaps@bsd.lv> | 2009-10-19 11:02:23 +0000 |
---|---|---|
committer | Kristaps Dzonsons <kristaps@bsd.lv> | 2009-10-19 11:02:23 +0000 |
commit | 7c66abf718a841b668e220adaff53df0c108d52f (patch) | |
tree | 6a3fd6931aee825298f254b5ab876b5d33b3c345 /mdoc_html.c | |
parent | 419e256605cda094f50f8a984fa8896dded53e7f (diff) | |
download | mandoc-7c66abf718a841b668e220adaff53df0c108d52f.tar.gz |
Continued work on mdoc.7.
Noted buffer overwrite bug in -Thtml -mdoc (will fix later).
Diffstat (limited to 'mdoc_html.c')
-rw-r--r-- | mdoc_html.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/mdoc_html.c b/mdoc_html.c index 98124ced..d8db4417 100644 --- a/mdoc_html.c +++ b/mdoc_html.c @@ -1842,6 +1842,8 @@ mdoc_in_pre(MDOC_ARGS) print_otag(h, TAG_DIV, 0, NULL); } + /* FIXME: there's a buffer bug in here somewhere. */ + PAIR_CLASS_INIT(&tag[0], "includes"); print_otag(h, TAG_SPAN, 1, tag); |