Memory leak, from David CARLIER.
authornicm <nicm@openbsd.org>
Sun, 16 Apr 2017 20:33:46 +0000 (20:33 +0000)
committernicm <nicm@openbsd.org>
Sun, 16 Apr 2017 20:33:46 +0000 (20:33 +0000)
usr.bin/tmux/tmux.c

index 68affab..bb55e6d 100644 (file)
@@ -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: