Remove request from active requests stack in exception handler

This commit is contained in:
Ralf Haferkamp 2008-02-26 13:34:59 +00:00
parent 2b628547f5
commit b3e5e04595

View file

@ -50,7 +50,7 @@ LDAPMsg *LDAPMessageQueue::getNext(){
ret = req->getNextMessage();
}catch(LDAPException e){
//do some clean up
m_activeReq.top();
m_activeReq.pop();
throw;
}