aboutsummaryrefslogtreecommitdiff
path: root/src/server/game/Server/Protocol
diff options
context:
space:
mode:
authorShauren <none@none>2010-12-14 15:58:45 +0100
committerShauren <none@none>2010-12-14 15:58:45 +0100
commitf4581f67b8cc574d49455ec993858c9de49b0945 (patch)
treebe00a1542c3643d91a277b738d008f366e6ad1e7 /src/server/game/Server/Protocol
parent0c04b178dba6ae411d4902f5032340fb2380ff8a (diff)
Core: Fixed uninitialized variable warnings
--HG-- branch : trunk
Diffstat (limited to 'src/server/game/Server/Protocol')
-rwxr-xr-xsrc/server/game/Server/Protocol/Handlers/LFGHandler.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/server/game/Server/Protocol/Handlers/LFGHandler.cpp b/src/server/game/Server/Protocol/Handlers/LFGHandler.cpp
index e0a58aa029d..399dabc2103 100755
--- a/src/server/game/Server/Protocol/Handlers/LFGHandler.cpp
+++ b/src/server/game/Server/Protocol/Handlers/LFGHandler.cpp
@@ -187,7 +187,7 @@ void WorldSession::HandleLfgPlayerLockInfoRequestOpcode(WorldPacket &/*recv_data
{
LfgReward const* reward = NULL;
Quest const* qRew = NULL;
- uint8 done;
+ uint8 done = 0;
data << uint8(randomDungeons.size()); // Random Dungeon count
for (LfgDungeonSet::iterator it = randomDungeons.begin(); it != randomDungeons.end(); ++it)