Fix ef991b17: server was trying to free() a packet created with "new CommandPacket()" (#9334)

This commit is contained in:
Patric Stout 2021-06-03 22:07:44 +02:00 committed by GitHub
parent feb2ddbefa
commit 5e44da3010
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 2 deletions

View File

@ -1072,7 +1072,7 @@ void NetworkGameLoop()
if (cp != nullptr) {
NetworkSendCommand(cp->tile, cp->p1, cp->p2, cp->cmd & ~CMD_FLAGS_MASK, nullptr, cp->text, cp->company);
DEBUG(desync, 0, "Injecting: %08x; %02x; %02x; %06x; %08x; %08x; %08x; \"%s\" (%s)", _date, _date_fract, (int)_current_company, cp->tile, cp->p1, cp->p2, cp->cmd, cp->text.c_str(), GetCommandName(cp->cmd));
free(cp);
delete cp;
cp = nullptr;
}
if (check_sync_state) {

View File

@ -1758,7 +1758,7 @@ static void NetworkHandleCommandQueue(NetworkClientSocket *cs)
CommandPacket *cp;
while ((cp = cs->outgoing_queue.Pop()) != nullptr) {
cs->SendCommand(cp);
free(cp);
delete cp;
}
}