Diff between b0f40aff528b34a31314dff8c7dbd15a629e17cc and 7f5766984cb91e85ec526670fc8794067970f617
Changed Files
| File | Additions | Deletions | Status |
| unit/test-queue.c | +2 | -0 | modified |
Full Patch
diff --git a/unit/test-queue.c b/unit/test-queue.c
index 95d14b7..f72f2e6 100644
--- a/unit/test-queue.c
+++ b/unit/test-queue.c
@@ -167,6 +167,8 @@ static void test_push_after(void)
g_assert(queue_pop_head(queue) == UINT_TO_PTR(0));
g_assert(queue_pop_head(queue) == UINT_TO_PTR(1));
g_assert(queue_pop_head(queue) == UINT_TO_PTR(1));
+
+ queue_destroy(queue, NULL);
}
int main(int argc, char *argv[])