fixed user list bug in threaded client, fixed buddy list crash in server

This commit is contained in:
Max-Wilhelm Bruker 2012-03-26 00:54:44 +02:00
parent fd5be3d525
commit d251078feb
5 changed files with 13 additions and 11 deletions

View file

@ -62,8 +62,9 @@ void AbstractClient::processProtocolItem(const ServerMessage &item)
PendingCommand *pend = pendingCommands.value(cmdId, 0);
if (!pend)
return;
pendingCommands.remove(cmdId);
locker.unlock();
pend->processResponse(response);
pend->deleteLater();
break;