fixed memory leaks.

This commit is contained in:
Martin Preuss
2025-03-23 16:58:07 +01:00
parent ebce002614
commit 52eb92a00c
14 changed files with 292 additions and 7 deletions

View File

@@ -35,6 +35,7 @@ void AQH_EventLoop_free(AQH_EVENT_LOOP *eventLoop)
if (eventLoop) {
AQH_Object_List2_free(eventLoop->timerObjectList);
AQH_Object_List2_free(eventLoop->fdObjectList);
GWEN_FREE_OBJECT(eventLoop);
}
}