Fixed memory leak in _handle_realmann_command() when returning without calling message_destroy() on variable 'message'

This commit is contained in:
RElesgoe 2016-08-24 00:36:04 -07:00
parent a9f8ad46cb
commit fb48daa92a

View file

@ -2734,6 +2734,9 @@ namespace pvpgn
}
}
}
message_destroy(message);
return 0;
}