diff options
author | 2017-04-16 20:33:46 +0000 | |
---|---|---|
committer | 2017-04-16 20:33:46 +0000 | |
commit | 11ff76bc9e370d4ca236f29363713aa4f29835da (patch) | |
tree | 3f311509aadf7a71f282a79bfa4e925f405104c2 | |
parent | Use EL1 to clear lines when redrawing the leftmost pane, rather than (diff) | |
download | wireguard-openbsd-11ff76bc9e370d4ca236f29363713aa4f29835da.tar.xz wireguard-openbsd-11ff76bc9e370d4ca236f29363713aa4f29835da.zip |
Memory leak, from David CARLIER.
-rw-r--r-- | usr.bin/tmux/tmux.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/usr.bin/tmux/tmux.c b/usr.bin/tmux/tmux.c index 68affab3ecc..bb55e6d9595 100644 --- a/usr.bin/tmux/tmux.c +++ b/usr.bin/tmux/tmux.c @@ -1,4 +1,4 @@ -/* $OpenBSD: tmux.c,v 1.178 2017/03/21 19:28:03 nicm Exp $ */ +/* $OpenBSD: tmux.c,v 1.179 2017/04/16 20:33:46 nicm Exp $ */ /* * Copyright (c) 2007 Nicholas Marriott <nicholas.marriott@gmail.com> @@ -141,6 +141,8 @@ make_label(const char *label) if (realpath(base, resolved) == NULL) strlcpy(resolved, base, sizeof resolved); xasprintf(&path, "%s/%s", resolved, label); + + free(base); return (path); fail: |