aeDeleteEventLoop use after free and leak fixes
Former-commit-id: 77820e5d50e0426570285a2c740c47b05a7c6c2f
This commit is contained in:
parent
98d15c7d14
commit
f99b59ae96
10
src/ae.cpp
10
src/ae.cpp
@ -402,10 +402,18 @@ extern "C" void aeDeleteEventLoop(aeEventLoop *eventLoop) {
|
|||||||
aeApiFree(eventLoop);
|
aeApiFree(eventLoop);
|
||||||
zfree(eventLoop->events);
|
zfree(eventLoop->events);
|
||||||
zfree(eventLoop->fired);
|
zfree(eventLoop->fired);
|
||||||
zfree(eventLoop);
|
|
||||||
fastlock_free(&eventLoop->flock);
|
fastlock_free(&eventLoop->flock);
|
||||||
close(eventLoop->fdCmdRead);
|
close(eventLoop->fdCmdRead);
|
||||||
close(eventLoop->fdCmdWrite);
|
close(eventLoop->fdCmdWrite);
|
||||||
|
|
||||||
|
auto *te = eventLoop->timeEventHead;
|
||||||
|
while (te)
|
||||||
|
{
|
||||||
|
auto *teNext = te->next;
|
||||||
|
zfree(te);
|
||||||
|
te = teNext;
|
||||||
|
}
|
||||||
|
zfree(eventLoop);
|
||||||
}
|
}
|
||||||
|
|
||||||
extern "C" void aeStop(aeEventLoop *eventLoop) {
|
extern "C" void aeStop(aeEventLoop *eventLoop) {
|
||||||
|
Loading…
x
Reference in New Issue
Block a user