scdoc2mdoc

A fork of scdoc to output mdoc(7)
git clone git://git.sgregoratto.me/scdoc2mdoc
Log | Files | Refs | README | LICENSE

commit d3030d866a8807f62e4941c368715f0fd6e60cc4
parent 3ba5240756df606bceab61f863da5287f89ce695
Author: random human <random.bored.human@gmail.com>
Date:   Wed,  5 Sep 2018 18:51:32 +0530

Free string on UTF8_INVALID in parse_extra

Diffstat:
Msrc/main.c | 1+
1 file changed, 1 insertion(+), 0 deletions(-)

diff --git a/src/main.c b/src/main.c @@ -55,6 +55,7 @@ static str_t *parse_extra(struct parser *p) { assert(ret != -1); } } + str_free(extra); return NULL; }