From 0e320881d50efea3e4036c4a769cf2224dcc315e Mon Sep 17 00:00:00 2001 From: Tiago Cunha Date: Thu, 28 Jan 2010 22:44:16 +0000 Subject: [PATCH] Sync OpenBSD patchset 620: Actually use the copy made when no newline is found, from martynas@. --- status.c | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/status.c b/status.c index 9242a1ed..a31e579f 100644 --- a/status.c +++ b/status.c @@ -1,4 +1,4 @@ -/* $Id: status.c,v 1.141 2009-12-16 01:10:36 tcunha Exp $ */ +/* $Id: status.c,v 1.142 2010-01-28 22:44:16 tcunha Exp $ */ /* * Copyright (c) 2007 Nicholas Marriott @@ -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. */