=================================================================== RCS file: /cvs/mandoc/html.c,v retrieving revision 1.142 retrieving revision 1.143 diff -u -p -r1.142 -r1.143 --- mandoc/html.c 2011/05/17 11:34:31 1.142 +++ mandoc/html.c 2011/05/17 11:38:18 1.143 @@ -1,4 +1,4 @@ -/* $Id: html.c,v 1.142 2011/05/17 11:34:31 kristaps Exp $ */ +/* $Id: html.c,v 1.143 2011/05/17 11:38:18 kristaps Exp $ */ /* * Copyright (c) 2008, 2009, 2010, 2011 Kristaps Dzonsons * Copyright (c) 2011 Ingo Schwarze @@ -656,6 +656,7 @@ buffmt_includes(struct html *h, const char *name) pp = h->base_includes; + bufinit(h); while (NULL != (p = strchr(pp, '%'))) { bufncat(h, pp, (size_t)(p - pp)); switch (*(p + 1)) { @@ -680,7 +681,7 @@ buffmt_man(struct html *h, pp = h->base_man; - /* LINTED */ + bufinit(h); while (NULL != (p = strchr(pp, '%'))) { bufncat(h, pp, (size_t)(p - pp)); switch (*(p + 1)) { @@ -718,8 +719,6 @@ bufcat_id(struct html *h, const char *src) /* Cf. . */ - if (0 == h->buflen) - bufcat(h, "#x"); while ('\0' != *src) bufcat_fmt(h, "%.2x", *src++); }