From ea43b5664461b79766e060c5514a893789c92241 Mon Sep 17 00:00:00 2001 From: Aaron Culliney Date: Mon, 7 Sep 2015 11:27:32 -0700 Subject: [PATCH] Avoid leaking PQList_s --- src/audio/playqueue.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/audio/playqueue.c b/src/audio/playqueue.c index af57e595..590d371a 100644 --- a/src/audio/playqueue.c +++ b/src/audio/playqueue.c @@ -214,6 +214,7 @@ void playq_destroyPlayQueue(INOUT PlayQueue_s **queue) { } } + FREE(list); FREE(*queue); }