From 5113680f95e522c677cdd37072cfffbdca06831e Mon Sep 17 00:00:00 2001 From: Martin Willi Date: Mon, 10 Apr 2006 08:07:38 +0000 Subject: - split up in libstrong, charon, stroke, testing done - new leak detective with malloc hook in library - useable, but needs improvements - logger_manager has now a single instance per library - allows use of loggers from any linking prog - a LOT of other things --- Source/charon/queues/send_queue.c | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) (limited to 'Source/charon/queues/send_queue.c') diff --git a/Source/charon/queues/send_queue.c b/Source/charon/queues/send_queue.c index df1f7b38f..0852e5303 100644 --- a/Source/charon/queues/send_queue.c +++ b/Source/charon/queues/send_queue.c @@ -24,7 +24,6 @@ #include "send_queue.h" -#include #include @@ -130,7 +129,7 @@ static void destroy (private_send_queue_t *this) pthread_cond_destroy(&(this->condvar)); - allocator_free(this); + free(this); } /* @@ -139,7 +138,7 @@ static void destroy (private_send_queue_t *this) */ send_queue_t *send_queue_create() { - private_send_queue_t *this = allocator_alloc_thing(private_send_queue_t); + private_send_queue_t *this = malloc_thing(private_send_queue_t); this->public.get_count = (int(*)(send_queue_t*)) get_count; this->public.get = (packet_t*(*)(send_queue_t*)) get; -- cgit v1.2.3