Core/Misc: Fix some issues detected by static analysis

* Assignment of function parameter has no effect outside the function. Did you forget dereferencing it?
  -> This argument is passed by value, it makes no sence so set it to null here.

* Member variable 'instance_violet_hold_InstanceMapScript::bWiped' is not initialized in the constructor.

* Mismatching allocation and deallocation: Data
This commit is contained in:
Naios
2015-03-18 19:08:45 +01:00
parent e40a5bf0b1
commit 433bc289c2
3 changed files with 3 additions and 3 deletions
+2 -1
View File
@@ -54,9 +54,10 @@ namespace Battlenet
memcpy(Data, right.Data, DataSize);
}
}
~ModuleInfo()
{
delete Data;
delete[] Data;
}
std::string Type;