=================================================================== RCS file: /cvsrepo/anoncvs/cvs/src/usr.bin/mandoc/man_html.c,v retrieving revision 1.121 retrieving revision 1.122 diff -u -r1.121 -r1.122 --- src/usr.bin/mandoc/man_html.c 2019/01/11 12:44:10 1.121 +++ src/usr.bin/mandoc/man_html.c 2019/01/11 16:35:39 1.122 @@ -1,4 +1,4 @@ -/* $OpenBSD: man_html.c,v 1.121 2019/01/11 12:44:10 schwarze Exp $ */ +/* $OpenBSD: man_html.c,v 1.122 2019/01/11 16:35:39 schwarze Exp $ */ /* * Copyright (c) 2008-2012, 2014 Kristaps Dzonsons * Copyright (c) 2013-2015, 2017-2019 Ingo Schwarze @@ -117,7 +117,7 @@ if ((h->oflags & HTML_FRAGMENT) == 0) { print_gen_decls(h); print_otag(h, TAG_HTML, ""); - if (n->type == ROFFT_COMMENT) + if (n != NULL && n->type == ROFFT_COMMENT) print_gen_comment(h, n); t = print_otag(h, TAG_HEAD, ""); print_man_head(man, h);