diff options
author | Nicholas Marriott <nicm@cvs.openbsd.org> | 2015-09-24 12:03:59 +0000 |
---|---|---|
committer | Nicholas Marriott <nicm@cvs.openbsd.org> | 2015-09-24 12:03:59 +0000 |
commit | f16021874f46e9695f0c629c39718da776d4894c (patch) | |
tree | c0a17a00adeac3143d29e564236bca61a4e8a647 /usr.bin/tmux/log.c | |
parent | 32a01671b3aa01e0ec24b8d19160e2b85a17bdb0 (diff) |
Do not leak log file descriptor.
Diffstat (limited to 'usr.bin/tmux/log.c')
-rw-r--r-- | usr.bin/tmux/log.c | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/usr.bin/tmux/log.c b/usr.bin/tmux/log.c index 51eec207250..2428481a138 100644 --- a/usr.bin/tmux/log.c +++ b/usr.bin/tmux/log.c @@ -1,4 +1,4 @@ -/* $OpenBSD: log.c,v 1.16 2015/09/14 12:12:24 nicm Exp $ */ +/* $OpenBSD: log.c,v 1.17 2015/09/24 12:03:58 nicm Exp $ */ /* * Copyright (c) 2007 Nicholas Marriott <nicm@users.sourceforge.net> @@ -42,6 +42,9 @@ log_event_cb(unused int severity, const char *msg) void log_open(const char *path) { + if (log_file != NULL) + fclose(log_file); + log_file = fopen(path, "w"); if (log_file == NULL) return; |