diff options
author | Kristaps Dzonsons <kristaps@bsd.lv> | 2009-03-09 13:35:09 +0000 |
---|---|---|
committer | Kristaps Dzonsons <kristaps@bsd.lv> | 2009-03-09 13:35:09 +0000 |
commit | 028cb9cf2041bbee0ed488b669254a2a8bc9ccb9 (patch) | |
tree | 5ab2627228735e61d73e125ca0c30cbd81138c0d /mmain.c | |
parent | 79c252d0d501a7a16abd7ad9da42ff7440083ee4 (diff) | |
download | mandoc-028cb9cf2041bbee0ed488b669254a2a8bc9ccb9.tar.gz |
Fixed valgrind issues.VERSION.1.4.6
Diffstat (limited to 'mmain.c')
-rw-r--r-- | mmain.c | 9 |
1 files changed, 5 insertions, 4 deletions
@@ -312,18 +312,19 @@ parse(struct mmain *p) } ln[pos] = 0; - if ( ! mdoc_parseln(p->mdoc, lnn, ln)) + if ( ! mdoc_parseln(p->mdoc, lnn, ln)) { + free(ln); return(0); + } lnn++; pos = 0; } } - if (pos > 0) - warnx("%s: file not eof-terminated", p->in); - if (ln) free(ln); + if (pos > 0) + warnx("%s: file not eof-terminated", p->in); return(mdoc_endparse(p->mdoc)); } |