summaryrefslogtreecommitdiffstats
path: root/cmd-queue.c
diff options
context:
space:
mode:
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. */