summaryrefslogtreecommitdiffstats
path: root/cmd-queue.c
diff options
context:
space:
mode:
authornicm <nicm>2020-04-23 05:48:42 +0000
committernicm <nicm>2020-04-23 05:48:42 +0000
commit906dfe9f5c217bb026929120b346722e5cb32106 (patch)
treeb426bc7d4ce1a4f7f5635083af24ac71fca12fa8 /cmd-queue.c
parente46cf86d307546e2f31e54e1af59d8e275a60269 (diff)
Fix a couple of memory leaks, one when creating a new pane and one when
adding formats onto the queue item.
Diffstat (limited to 'cmd-queue.c')
-rw-r--r--cmd-queue.c8
1 files changed, 6 insertions, 2 deletions
diff --git a/cmd-queue.c b/cmd-queue.c
index 5df30940..59f86c64 100644
--- a/cmd-queue.c
+++ b/cmd-queue.c
@@ -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. */