diff options
author | David Robillard <d@drobilla.net> | 2011-09-19 03:19:14 +0000 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2011-09-19 03:19:14 +0000 |
commit | 6cd39f7513775d2ac0137bfbae74aadf10241bb0 (patch) | |
tree | e46a2f9f25ca490d8580718b814144224b101749 | |
parent | 6571ed0648004270ce916d6187a55d845fde7c8a (diff) | |
download | zix-6cd39f7513775d2ac0137bfbae74aadf10241bb0.tar.gz zix-6cd39f7513775d2ac0137bfbae74aadf10241bb0.tar.bz2 zix-6cd39f7513775d2ac0137bfbae74aadf10241bb0.zip |
Free ring before exit (cover zix_ring_free)
git-svn-id: http://svn.drobilla.net/zix/trunk@20 df6676b4-ccc9-40e5-b5d6-7c4628a128e3
-rw-r--r-- | test/ring_test.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/test/ring_test.c b/test/ring_test.c index 6fc0541..ede0bac 100644 --- a/test/ring_test.c +++ b/test/ring_test.c @@ -141,5 +141,6 @@ main(int argc, char** argv) return 1; } + zix_ring_free(ring); return 0; } |