From 955d9b787a09ea7a12534dcacb6bc735ecaf10aa Mon Sep 17 00:00:00 2001 From: Anton Tarasenko Date: Sat, 15 Jan 2022 02:45:32 +0700 Subject: [PATCH] Fix issue with wrong deallocations --- sources/Commands/BuiltInCommands/ACommandHelp.uc | 3 --- 1 file changed, 3 deletions(-) diff --git a/sources/Commands/BuiltInCommands/ACommandHelp.uc b/sources/Commands/BuiltInCommands/ACommandHelp.uc index 88bdcf5..e3abfff 100644 --- a/sources/Commands/BuiltInCommands/ACommandHelp.uc +++ b/sources/Commands/BuiltInCommands/ACommandHelp.uc @@ -60,9 +60,6 @@ protected function Executed(Command.CallData callData, EPlayer callerPlayer) commandsToDisplay = DynamicArray(parameters.GetItem(P("commands"))); DisplayCommandHelpPages(callerPlayer, commandsToDisplay); } - _.memory.Free(callerPlayer); - _.memory.Free(parameters); - _.memory.Free(options); } private final function DisplayCommandList(EPlayer player)