]> git.cameronkatri.com Git - mandoc.git/commitdiff
Fixed memory leak introduced in last checkin of man_action TH parsing (only if TH...
authorKristaps Dzonsons <kristaps@bsd.lv>
Sat, 15 May 2010 16:27:23 +0000 (16:27 +0000)
committerKristaps Dzonsons <kristaps@bsd.lv>
Sat, 15 May 2010 16:27:23 +0000 (16:27 +0000)
Fixed my email address in man_action.c and msec.c.
Removed superfluous <time.h> inclusion in msec.c.

man_action.c
msec.c

index 9a443dca54c0ba885d6f13e46d5a282bc5d7e96f..2425c13adc6405a2f18a2f9fbf3c9bf4dd83182c 100644 (file)
@@ -1,6 +1,6 @@
-/*     $Id: man_action.c,v 1.31 2010/05/15 15:54:39 kristaps Exp $ */
+/*     $Id: man_action.c,v 1.32 2010/05/15 16:27:23 kristaps Exp $ */
 /*
- * Copyright (c) 2008, 2009 Kristaps Dzonsons <kristaps@kth.se>
+ * Copyright (c) 2008, 2009 Kristaps Dzonsons <kristaps@bsd.lv>
  *
  * Permission to use, copy, modify, and distribute this software for any
  * purpose with or without fee is hereby granted, provided that the above
@@ -151,6 +151,8 @@ post_TH(struct man *m)
                free(m->meta.vol);
        if (m->meta.source)
                free(m->meta.source);
+       if (m->meta.msec)
+               free(m->meta.msec);
 
        m->meta.title = m->meta.vol = 
                m->meta.msec = m->meta.source = NULL;
diff --git a/msec.c b/msec.c
index aeb7767d2cfab1f9c5c7873c5ead3ab612de06be..e41d6439cf64b3b05ace13ed134c4fc5794d88a3 100644 (file)
--- a/msec.c
+++ b/msec.c
@@ -1,6 +1,6 @@
-/*     $Id: msec.c,v 1.6 2010/01/01 17:14:30 kristaps Exp $ */
+/*     $Id: msec.c,v 1.7 2010/05/15 16:27:23 kristaps Exp $ */
 /*
- * Copyright (c) 2009 Kristaps Dzonsons <kristaps@kth.se>
+ * Copyright (c) 2009 Kristaps Dzonsons <kristaps@bsd.lv>
  *
  * Permission to use, copy, modify, and distribute this software for any
  * purpose with or without fee is hereby granted, provided that the above
@@ -20,7 +20,6 @@
 
 #include <stdlib.h>
 #include <string.h>
-#include <time.h>
 
 #include "libmdoc.h"