diff options
author | Kristaps Dzonsons <kristaps@bsd.lv> | 2010-06-09 08:31:18 +0000 |
---|---|---|
committer | Kristaps Dzonsons <kristaps@bsd.lv> | 2010-06-09 08:31:18 +0000 |
commit | a560a18cf09008f29e00db4014ecd394727489c8 (patch) | |
tree | 13657948b793a69698473d39dfe338d9288d2d38 | |
parent | 21a2b28bbf9477322208667281f6c561985a17d7 (diff) | |
download | mandoc-a560a18cf09008f29e00db4014ecd394727489c8.tar.gz |
Forgot to increment into the nil terminator. And call va_end() while
we're at it.
-rw-r--r-- | term_ps.c | 4 |
1 files changed, 3 insertions, 1 deletions
@@ -125,6 +125,8 @@ ps_printf(struct termp *p, const char *fmt, ...) pos = (int)p->engine.ps.psmargcur; vsnprintf(&p->engine.ps.psmarg[pos], PS_BUFSLOP, fmt, ap); p->engine.ps.psmargcur = strlen(p->engine.ps.psmarg); + + va_end(ap); } @@ -143,7 +145,7 @@ ps_putchar(struct termp *p, char c) PS_GROWBUF(p, 2); pos = (int)p->engine.ps.psmargcur++; - p->engine.ps.psmarg[pos] = c; + p->engine.ps.psmarg[pos++] = c; p->engine.ps.psmarg[pos] = '\0'; } |