test/dlist_tests.c

changeset 30
23bb65cbf7a4
parent 27
22644e2572bc
child 33
9c219a62070d
     1.1 --- a/test/dlist_tests.c	Tue Feb 21 01:13:17 2012 +0100
     1.2 +++ b/test/dlist_tests.c	Fri Feb 24 15:53:50 2012 +0100
     1.3 @@ -60,7 +60,6 @@
     1.4      UCX_TEST_ASSERT(strncmp(list->next->data, " World!", 7) == 0, "failed")
     1.5      UCX_TEST_ASSERT(list->next->next == NULL, "failed")
     1.6      
     1.7 -    ucx_dlist_free(list2);
     1.8      ucx_dlist_free(list);
     1.9      
    1.10      UCX_TEST_END
    1.11 @@ -160,8 +159,8 @@
    1.12  
    1.13      free(world);
    1.14      free(hello);
    1.15 -    free(list);
    1.16 -    free(copy);
    1.17 +    ucx_dlist_free(list);
    1.18 +    ucx_dlist_free(copy);
    1.19      
    1.20      UCX_TEST_END
    1.21  }

mercurial