summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authornicm <nicm@openbsd.org>2010-01-26 21:36:53 +0000
committernicm <nicm@openbsd.org>2010-01-26 21:36:53 +0000
commit03acdd6ec49f1ab863e5f0ec50010b6d07049eaf (patch)
tree169ce854f63c6d3d048b7d37f6a6a5aa4a98e6df
parentsync (diff)
downloadwireguard-openbsd-03acdd6ec49f1ab863e5f0ec50010b6d07049eaf.tar.xz
wireguard-openbsd-03acdd6ec49f1ab863e5f0ec50010b6d07049eaf.zip
Actually use the copy made when no newline is found, from martynas@.
-rw-r--r--usr.bin/tmux/status.c9
1 files changed, 5 insertions, 4 deletions
diff --git a/usr.bin/tmux/status.c b/usr.bin/tmux/status.c
index c4d8008d816..c6344476c09 100644
--- a/usr.bin/tmux/status.c
+++ b/usr.bin/tmux/status.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: status.c,v 1.56 2009/12/14 10:47:11 nicm Exp $ */
+/* $OpenBSD: status.c,v 1.57 2010/01/26 21:36:53 nicm Exp $ */
/*
* Copyright (c) 2007 Nicholas Marriott <nicm@users.sourceforge.net>
@@ -550,10 +550,11 @@ status_job_callback(struct job *job)
xfree(job->data);
else
server_redraw_client(job->client);
- job->data = xstrdup(line);
- if (buf != NULL)
- xfree(buf);
+ if (line == NULL)
+ job->data = buf;
+ else
+ job->data = xstrdup(line);
}
/* Calculate winlink status line entry width. */