[+] I dont see how, but double registered requests would've crashed the client due to a shitily written loop
This commit is contained in:
parent
4508b07802
commit
c8316caae4
@ -163,11 +163,10 @@ void AuRPCClientChannel::ProcessResponse(const AuSPtr<AuRPCResponse> &response)
|
||||
|
||||
for (auto itr = this->outstandingRequests.begin();
|
||||
itr != this->outstandingRequests.end();
|
||||
)
|
||||
itr++)
|
||||
{
|
||||
if (response->cookie != AuUInt(itr->get()))
|
||||
{
|
||||
itr++;
|
||||
continue;
|
||||
}
|
||||
|
||||
@ -178,6 +177,7 @@ void AuRPCClientChannel::ProcessResponse(const AuSPtr<AuRPCResponse> &response)
|
||||
{
|
||||
req->callback->OnResponse(*response);
|
||||
}
|
||||
break;
|
||||
}
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user