- LEAK_DETECTIVE activated

- memory leak in event_queue_t fixed
This commit is contained in:
Jan Hutter
2005-11-08 07:04:15 +00:00
parent 01d06501d9
commit 6e67d74a9b
4 changed files with 8 additions and 7 deletions
+3 -2
View File
@@ -280,6 +280,7 @@ static status_t add_absolute(private_event_queue_t *this, job_t *job, timeval_t
status = iterator->has_next(iterator,&has_next);
if (status != SUCCESS)
{
iterator->destroy(iterator);
break;
}
@@ -295,8 +296,7 @@ static status_t add_absolute(private_event_queue_t *this, job_t *job, timeval_t
if (time_difference(&(event->time), &(current_event->time)) <= 0)
{
/* my event has to be fired before the current event in list */
status = this->list->insert_before(this->list,current_list_element,event);
status = this->list->insert_before(this->list,current_list_element,event);
break;
}
@@ -306,6 +306,7 @@ static status_t add_absolute(private_event_queue_t *this, job_t *job, timeval_t
break;
}
}
iterator->destroy(iterator);
break;
}