mirror of
https://github.com/tmux/tmux.git
synced 2024-11-12 23:28:52 +00:00
Actually use the copy made when no newline is found, from martynas@.
This commit is contained in:
parent
f26312ffbf
commit
ba6dedbbbd
7
status.c
7
status.c
@ -550,10 +550,11 @@ status_job_callback(struct job *job)
|
|||||||
xfree(job->data);
|
xfree(job->data);
|
||||||
else
|
else
|
||||||
server_redraw_client(job->client);
|
server_redraw_client(job->client);
|
||||||
job->data = xstrdup(line);
|
|
||||||
|
|
||||||
if (buf != NULL)
|
if (line == NULL)
|
||||||
xfree(buf);
|
job->data = buf;
|
||||||
|
else
|
||||||
|
job->data = xstrdup(line);
|
||||||
}
|
}
|
||||||
|
|
||||||
/* Calculate winlink status line entry width. */
|
/* Calculate winlink status line entry width. */
|
||||||
|
Loading…
Reference in New Issue
Block a user