8
0
mirror of https://github.com/FirebirdSQL/firebird.git synced 2025-01-24 10:03:03 +01:00

Additional patch for bug CORE- 2824 : Small memory and handles leak at every connect\disconnect

This commit is contained in:
hvlad 2010-01-25 14:54:42 +00:00
parent 5de7f57210
commit 4f59764b1c

View File

@ -1260,7 +1260,8 @@ void CCH_fini(thread_db* tdbb)
{
QUE que_inst = bcb->bcb_free_lwt.que_forward;
QUE_DELETE(*que_inst);
// LatchWait* lwt = (LatchWait*) BLOCK(que_inst, LatchWait*, lwt_waiters);
LatchWait* lwt = (LatchWait*) BLOCK(que_inst, LatchWait*, lwt_waiters);
delete lwt;
}
#endif
}