summaryrefslogtreecommitdiff
path: root/tests/test_dlinklists.c
diff options
context:
space:
mode:
authorJonathan Rose <jrose@digium.com>2013-10-23 20:10:30 +0000
committerJonathan Rose <jrose@digium.com>2013-10-23 20:10:30 +0000
commitbeb5cdbef54908cc1564539f9cfb8852b530f2bc (patch)
treeb996e266a664ff749c2c8c36269934c46216109f /tests/test_dlinklists.c
parentd7bac6cf4b981d7e393902227497b51fb47f671e (diff)
memory leaks: Memory leak cleanup patch by Corey Farrell (first set)
(issue ASTERSIK-22467) Reported by: Corey Farrell Patches: chan_sip-parse_contact_header_test-free-contacts.patch uploaded by coreyfarrell (license 5909) cli-filename-completion-leak.patch uploaded by coreyfarrell (license 5909) func_math.patch uploaded by corefarrell (license 5909) main-test-cleanup.patch uploaded by coreyfarrell (license 5909) test_dlinklists.patch uploaded by coreyfarrell (license 5909) ........ Merged revisions 401660 from http://svn.asterisk.org/svn/asterisk/branches/1.8 ........ Merged revisions 401661 from http://svn.asterisk.org/svn/asterisk/branches/11 ........ Merged revisions 401662 from http://svn.asterisk.org/svn/asterisk/branches/12 git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@401663 65c4cc65-6c06-0410-ace0-fbb531ad65f3
Diffstat (limited to 'tests/test_dlinklists.c')
-rw-r--r--tests/test_dlinklists.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/tests/test_dlinklists.c b/tests/test_dlinklists.c
index ec13851d7..197dd757a 100644
--- a/tests/test_dlinklists.c
+++ b/tests/test_dlinklists.c
@@ -337,6 +337,7 @@ static void dll_tests(void)
if (e == b) {
AST_DLLIST_REMOVE_CURRENT(list); /* C A */
+ free(b);
print_list(tc, "C <=> A");
}
if (e == a) {
@@ -348,6 +349,7 @@ static void dll_tests(void)
AST_DLLIST_TRAVERSE_SAFE_END;
print_list(tc, "C <=> A <=> D");
+ destroy_test_container(tc);
}
static int unload_module(void)