[Bug Fix] Fix memory leak in ucs (#2409)

This commit is contained in:
hg 2022-09-02 22:48:33 -04:00 committed by GitHub
parent ce12481021
commit d12145c449
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -887,7 +887,8 @@ void Client::AddCharacter(int CharID, const char *CharacterName, int Level) {
}
void Client::SendKeepAlive() {
QueuePacket(new EQApplicationPacket(OP_SessionReady, 0));
EQApplicationPacket outapp(OP_SessionReady, 0);
QueuePacket(&outapp);
}
void Client::SendMailBoxes() {