mirror of
https://github.com/mangosfour/server.git
synced 2025-12-13 22:37:03 +00:00
[9554] Fixed possible runtime crash.
Signed-off-by: ApoC <apoc@nymfe.net>
This commit is contained in:
parent
17d8c4d075
commit
1a75730f41
2 changed files with 2 additions and 2 deletions
|
|
@ -1297,7 +1297,7 @@ void WorldSession::HandleEquipmentSetUse(WorldPacket &recv_data)
|
||||||
recv_data >> itemGuid.ReadAsPacked();
|
recv_data >> itemGuid.ReadAsPacked();
|
||||||
recv_data >> srcbag >> srcslot;
|
recv_data >> srcbag >> srcslot;
|
||||||
|
|
||||||
sLog.outDebug("Item " I64FMT ": srcbag %u, srcslot %u", itemGuid, srcbag, srcslot);
|
sLog.outDebug("Item " I64FMT ": srcbag %u, srcslot %u", itemGuid.GetRawValue(), srcbag, srcslot);
|
||||||
|
|
||||||
Item *item = _player->GetItemByGuid(itemGuid.GetRawValue());
|
Item *item = _player->GetItemByGuid(itemGuid.GetRawValue());
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -1,4 +1,4 @@
|
||||||
#ifndef __REVISION_NR_H__
|
#ifndef __REVISION_NR_H__
|
||||||
#define __REVISION_NR_H__
|
#define __REVISION_NR_H__
|
||||||
#define REVISION_NR "9553"
|
#define REVISION_NR "9554"
|
||||||
#endif // __REVISION_NR_H__
|
#endif // __REVISION_NR_H__
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue