diff options
author | Shauren <shauren.trinity@gmail.com> | 2012-01-28 19:50:50 +0100 |
---|---|---|
committer | Shauren <shauren.trinity@gmail.com> | 2012-01-28 19:50:50 +0100 |
commit | 05c8dd3042cd966e23ffa02a43860c1e178662b3 (patch) | |
tree | 18f0cb8e08286f505d5cfe5dadd783af68c1cb43 | |
parent | 0df5e19bd6b1cbad20ba80c73db3bc8693c6bece (diff) |
Core/DBCs: Fixed memory corruption caused by out of bounds array access
-rwxr-xr-x | src/server/game/DataStores/DBCStructure.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/server/game/DataStores/DBCStructure.h b/src/server/game/DataStores/DBCStructure.h index 608824b140f..d57b6d68115 100755 --- a/src/server/game/DataStores/DBCStructure.h +++ b/src/server/game/DataStores/DBCStructure.h @@ -2336,6 +2336,6 @@ struct TaxiPathNodePtr typedef Path<TaxiPathNodePtr, TaxiPathNodeEntry const> TaxiPathNodeList; typedef std::vector<TaxiPathNodeList> TaxiPathNodesByPath; -#define TaxiMaskSize 14 +#define TaxiMaskSize 25 typedef uint32 TaxiMask[TaxiMaskSize]; #endif |