mirror of
https://github.com/mod-playerbots/azerothcore-wotlk.git
synced 2026-01-29 08:33:47 +00:00
Fix(Core/Crash): possible crash due uninitialized value (#10602)
This commit is contained in:
@@ -216,7 +216,7 @@ class SpellImplicitTargetInfo
|
||||
private:
|
||||
Targets _target;
|
||||
public:
|
||||
SpellImplicitTargetInfo() {}
|
||||
SpellImplicitTargetInfo() : _target(Targets(0)) {}
|
||||
SpellImplicitTargetInfo(uint32 target);
|
||||
|
||||
bool IsArea() const;
|
||||
|
||||
Reference in New Issue
Block a user