diff options
author | Kristaps Dzonsons <kristaps@bsd.lv> | 2009-03-25 16:07:36 +0000 |
---|---|---|
committer | Kristaps Dzonsons <kristaps@bsd.lv> | 2009-03-25 16:07:36 +0000 |
commit | 8747d57cb532849c7414532781921952821890ef (patch) | |
tree | c625b60ed28132927e965bcbc2515d35041f62ec /man.c | |
parent | 33f7ee51d3c8ff72c2d828a8d5be302ad73cbbe9 (diff) | |
download | mandoc-8747d57cb532849c7414532781921952821890ef.tar.gz |
Actions in place for prologue parsing.
Diffstat (limited to 'man.c')
-rw-r--r-- | man.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -133,8 +133,8 @@ man_free1(struct man *man) man_node_freelist(man->first); if (man->meta.title) free(man->meta.title); - if (man->meta.os) - free(man->meta.os); + if (man->meta.source) + free(man->meta.source); if (man->meta.vol) free(man->meta.vol); } |