From c895e6d88f1a41c252ca761f25f081a86c918417 Mon Sep 17 00:00:00 2001 From: Nicholas Marriott Date: Sun, 9 Aug 2009 08:34:18 +0000 Subject: Don't leak in the (rare) case of an invalid command at the end of a file not terminated by a \n. --- usr.bin/tmux/cfg.c | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'usr.bin/tmux/cfg.c') diff --git a/usr.bin/tmux/cfg.c b/usr.bin/tmux/cfg.c index 085d1a5d141..99a200da38b 100644 --- a/usr.bin/tmux/cfg.c +++ b/usr.bin/tmux/cfg.c @@ -1,4 +1,4 @@ -/* $OpenBSD: cfg.c,v 1.3 2009/07/30 17:46:12 nicm Exp $ */ +/* $OpenBSD: cfg.c,v 1.4 2009/08/09 08:34:17 nicm Exp $ */ /* * Copyright (c) 2008 Nicholas Marriott @@ -112,6 +112,8 @@ load_cfg(const char *path, char **cause) return (0); error: + if (line != NULL) + xfree(line); fclose(f); xasprintf(&ptr, "%s: %s at line %u", path, *cause, n); -- cgit v1.2.3