From: Fredrik Tolf Date: Sat, 31 Dec 2016 20:55:25 +0000 (+0100) Subject: lib: Fixed timeheap bug with ioloop reentrancy. X-Git-Url: http://www.dolda2000.com/gitweb/?p=ashd.git;a=commitdiff_plain;h=892b2066da6ac3c34057dfb736713d6117f01637 lib: Fixed timeheap bug with ioloop reentrancy. --- diff --git a/lib/mtio-epoll.c b/lib/mtio-epoll.c index a0b2f41..f4c4970 100644 --- a/lib/mtio-epoll.c +++ b/lib/mtio-epoll.c @@ -272,7 +272,6 @@ int ioloop(void) exitstatus = 0; epfd = epoll_create(128); fcntl(epfd, F_SETFD, FD_CLOEXEC); - bufinit(timeheap); for(bl = blockers; bl; bl = nbl) { nbl = bl->n; if(regfd(bl)) @@ -331,7 +330,6 @@ int ioloop(void) } for(bl = blockers; bl; bl = bl->n) remfd(bl); - buffree(timeheap); close(epfd); epfd = -1; return(exitstatus);