mirror of
https://github.com/tmux/tmux.git
synced 2024-12-04 19:58:48 +00:00
Fix a couple of memory leaks, one when creating a new pane and one when
adding formats onto the queue item.
This commit is contained in:
parent
e46cf86d30
commit
906dfe9f5c
@ -243,8 +243,12 @@ cmdq_copy_state(struct cmdq_state *state)
|
||||
void
|
||||
cmdq_free_state(struct cmdq_state *state)
|
||||
{
|
||||
if (--state->references == 0)
|
||||
free(state);
|
||||
if (--state->references != 0)
|
||||
return;
|
||||
|
||||
if (state->formats != NULL)
|
||||
format_free(state->formats);
|
||||
free(state);
|
||||
}
|
||||
|
||||
/* Add a format to command queue. */
|
||||
|
3
spawn.c
3
spawn.c
@ -366,6 +366,7 @@ spawn_pane(struct spawn_context *sc, char **cause)
|
||||
window_remove_pane(w, new_wp);
|
||||
}
|
||||
sigprocmask(SIG_SETMASK, &oldset, NULL);
|
||||
environ_free(child);
|
||||
return (NULL);
|
||||
}
|
||||
|
||||
@ -443,6 +444,8 @@ complete:
|
||||
sigprocmask(SIG_SETMASK, &oldset, NULL);
|
||||
window_pane_set_event(new_wp);
|
||||
|
||||
environ_free(child);
|
||||
|
||||
if (sc->flags & SPAWN_RESPAWN)
|
||||
return (new_wp);
|
||||
if ((~sc->flags & SPAWN_DETACHED) || w->active == NULL) {
|
||||
|
Loading…
Reference in New Issue
Block a user