mirror of
https://github.com/tmux/tmux.git
synced 2025-01-07 16:28:48 +00:00
Shorten a long line, and don't leak buffer in paste_add if size is zero.
This commit is contained in:
parent
98e7fbb2ac
commit
3d74e89a39
4
paste.c
4
paste.c
@ -163,8 +163,10 @@ paste_add(char *data, size_t size)
|
|||||||
struct paste_buffer *pb, *pb1;
|
struct paste_buffer *pb, *pb1;
|
||||||
u_int limit;
|
u_int limit;
|
||||||
|
|
||||||
if (size == 0)
|
if (size == 0) {
|
||||||
|
free(data);
|
||||||
return;
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
limit = options_get_number(global_options, "buffer-limit");
|
limit = options_get_number(global_options, "buffer-limit");
|
||||||
RB_FOREACH_REVERSE_SAFE(pb, paste_time_tree, &paste_by_time, pb1) {
|
RB_FOREACH_REVERSE_SAFE(pb, paste_time_tree, &paste_by_time, pb1) {
|
||||||
|
3
window.c
3
window.c
@ -886,7 +886,8 @@ window_pane_spawn(struct window_pane *wp, int argc, char **argv,
|
|||||||
ws.ws_col = screen_size_x(&wp->base);
|
ws.ws_col = screen_size_x(&wp->base);
|
||||||
ws.ws_row = screen_size_y(&wp->base);
|
ws.ws_row = screen_size_y(&wp->base);
|
||||||
|
|
||||||
switch (wp->pid = pty_fork(ptm_fd, &wp->fd, wp->tty, sizeof wp->tty, &ws)) {
|
wp->pid = pty_fork(ptm_fd, &wp->fd, wp->tty, sizeof wp->tty, &ws);
|
||||||
|
switch (wp->pid) {
|
||||||
case -1:
|
case -1:
|
||||||
wp->fd = -1;
|
wp->fd = -1;
|
||||||
xasprintf(cause, "%s: %s", cmd, strerror(errno));
|
xasprintf(cause, "%s: %s", cmd, strerror(errno));
|
||||||
|
Loading…
Reference in New Issue
Block a user