summaryrefslogtreecommitdiffstats
path: root/man.c
diff options
context:
space:
mode:
authorKristaps Dzonsons <kristaps@bsd.lv>2009-03-25 16:07:36 +0000
committerKristaps Dzonsons <kristaps@bsd.lv>2009-03-25 16:07:36 +0000
commit8747d57cb532849c7414532781921952821890ef (patch)
treec625b60ed28132927e965bcbc2515d35041f62ec /man.c
parent33f7ee51d3c8ff72c2d828a8d5be302ad73cbbe9 (diff)
downloadmandoc-8747d57cb532849c7414532781921952821890ef.tar.gz
Actions in place for prologue parsing.
Diffstat (limited to 'man.c')
-rw-r--r--man.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/man.c b/man.c
index 62251b52..9165ad21 100644
--- a/man.c
+++ b/man.c
@@ -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);
}