From be25abe332d021e7a5092c3596a6ffc11e352da9 Mon Sep 17 00:00:00 2001 From: Kristaps Dzonsons Date: Tue, 4 Jan 2011 10:31:15 +0000 Subject: Protect tbl nodes from getting a post call. --- man_html.c | 15 +++++++++++---- 1 file changed, 11 insertions(+), 4 deletions(-) (limited to 'man_html.c') diff --git a/man_html.c b/man_html.c index f9f72c8d..986ded45 100644 --- a/man_html.c +++ b/man_html.c @@ -1,4 +1,4 @@ -/* $Id: man_html.c,v 1.60 2011/01/04 10:29:41 kristaps Exp $ */ +/* $Id: man_html.c,v 1.61 2011/01/04 10:31:15 kristaps Exp $ */ /* * Copyright (c) 2008, 2009, 2010 Kristaps Dzonsons * @@ -227,10 +227,17 @@ print_man_node(MAN_ARGS) bufinit(h); - if (MAN_ROOT == n->type) + switch (n->type) { + case (MAN_ROOT): man_root_post(m, n, mh, h); - else if (mans[n->tok].post) - (*mans[n->tok].post)(m, n, mh, h); + break; + case (MAN_TBL): + break; + default: + if (mans[n->tok].post) + (*mans[n->tok].post)(m, n, mh, h); + break; + } } -- cgit v1.2.3-56-ge451