diff options
author | Kristaps Dzonsons <kristaps@bsd.lv> | 2010-05-15 16:27:23 +0000 |
---|---|---|
committer | Kristaps Dzonsons <kristaps@bsd.lv> | 2010-05-15 16:27:23 +0000 |
commit | 61fa6e4ca6c3633d815d9f5153a481a44c5f3162 (patch) | |
tree | 80c5cc9c2bf88cad92b270ad0bbd7e0854fa2b85 /msec.c | |
parent | 2f01ab1363bf6ab718b3fb6370fc6735e3e8bc02 (diff) | |
download | mandoc-61fa6e4ca6c3633d815d9f5153a481a44c5f3162.tar.gz |
Fixed memory leak introduced in last checkin of man_action TH parsing (only if TH is called again, which never happens anyway).
Fixed my email address in man_action.c and msec.c.
Removed superfluous <time.h> inclusion in msec.c.
Diffstat (limited to 'msec.c')
-rw-r--r-- | msec.c | 3 |
1 files changed, 1 insertions, 2 deletions
@@ -1,6 +1,6 @@ /* $Id$ */ /* - * 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" |