summaryrefslogtreecommitdiffstats
path: root/man.c
diff options
context:
space:
mode:
authorKristaps Dzonsons <kristaps@bsd.lv>2010-05-26 14:03:54 +0000
committerKristaps Dzonsons <kristaps@bsd.lv>2010-05-26 14:03:54 +0000
commitb3536e4d2b9fcb0daf7141c545883a7d2b442e33 (patch)
tree0a8d32a41e44b15218981b5a3d71ddba079e7c69 /man.c
parent878d84055a253f63524c12172dd09c9044ad0afd (diff)
downloadmandoc-b3536e4d2b9fcb0daf7141c545883a7d2b442e33.tar.gz
Allow bad -man dates to flow verbatim into the front-ends. Noted by
Ulrich Spoerlein.
Diffstat (limited to 'man.c')
-rw-r--r--man.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/man.c b/man.c
index 654e84d3..330ac74e 100644
--- a/man.c
+++ b/man.c
@@ -146,6 +146,8 @@ man_free1(struct man *man)
free(man->meta.title);
if (man->meta.source)
free(man->meta.source);
+ if (man->meta.rawdate)
+ free(man->meta.rawdate);
if (man->meta.vol)
free(man->meta.vol);
if (man->meta.msec)