diff -r bce0d7f2912b -r 23bb65cbf7a4 test/dlist_tests.c --- a/test/dlist_tests.c Tue Feb 21 01:13:17 2012 +0100 +++ b/test/dlist_tests.c Fri Feb 24 15:53:50 2012 +0100 @@ -60,7 +60,6 @@ UCX_TEST_ASSERT(strncmp(list->next->data, " World!", 7) == 0, "failed") UCX_TEST_ASSERT(list->next->next == NULL, "failed") - ucx_dlist_free(list2); ucx_dlist_free(list); UCX_TEST_END @@ -160,8 +159,8 @@ free(world); free(hello); - free(list); - free(copy); + ucx_dlist_free(list); + ucx_dlist_free(copy); UCX_TEST_END }