From e76a1323da65eef62672ea10d7d0cc1892c984bf Mon Sep 17 00:00:00 2001 From: Dmitri Pal Date: Sat, 19 Jun 2010 11:19:45 -0400 Subject: Fixing memory leaks in the unit test. --- collection/collection_queue_ut.c | 12 +++++++++--- 1 file changed, 9 insertions(+), 3 deletions(-) diff --git a/collection/collection_queue_ut.c b/collection/collection_queue_ut.c index 1d14322..fbe6ea3 100644 --- a/collection/collection_queue_ut.c +++ b/collection/collection_queue_ut.c @@ -137,12 +137,14 @@ int empty_test(void) col_destroy_collection(queue); return error; } + + col_delete_item(item); + COLOUT(col_debug_collection(queue,COL_TRAVERSE_DEFAULT)); } - COLOUT(printf("Add elemebts again.\n")); - if((error = col_create_queue(&queue)) || - (error = col_enqueue_str_property(queue, "item1","value 1" ,0)) || + COLOUT(printf("Add elements again.\n")); + if((error = col_enqueue_str_property(queue, "item1","value 1" ,0)) || (error = col_enqueue_int_property(queue, "item2", -1)) || (error = col_enqueue_unsigned_property(queue, "item3", 1))) { printf("Failed to enqueue property. Error %d\n", error); @@ -169,10 +171,14 @@ int empty_test(void) col_destroy_collection(queue); return error; } + + col_delete_item(item); + COLOUT(col_debug_collection(queue,COL_TRAVERSE_DEFAULT)); } col_destroy_collection(queue); + TRACE_FLOW_NUMBER("empty_test. Returning", error); COLOUT(printf("\n\nEND OF QUEUE TEST!!!.\n\n\n")); -- cgit