diff options
author | Lance <Lance@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2006-05-01 02:01:06 +0000 |
---|---|---|
committer | Lance <Lance@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2006-05-01 02:01:06 +0000 |
commit | 7ebaca33c87c77af4bee6fbe74e710a0279e1c77 (patch) | |
tree | 584b6732189fd4eafc943d69203673164ad75f54 | |
parent | c4703684d2c435e1360f3fe3318b979d90a5c0b4 (diff) | |
download | hercules-7ebaca33c87c77af4bee6fbe74e710a0279e1c77.tar.gz hercules-7ebaca33c87c77af4bee6fbe74e710a0279e1c77.tar.bz2 hercules-7ebaca33c87c77af4bee6fbe74e710a0279e1c77.tar.xz hercules-7ebaca33c87c77af4bee6fbe74e710a0279e1c77.zip |
* Fixed dangling pointer in pc_steal_item (missing lines) causing crash.
git-svn-id: https://rathena.svn.sourceforge.net/svnroot/rathena/trunk@6421 54d463be-8e91-2dee-dedb-b68131a5f0ec
-rw-r--r-- | Changelog-Trunk.txt | 1 | ||||
-rw-r--r-- | src/map/pc.c | 2 |
2 files changed, 3 insertions, 0 deletions
diff --git a/Changelog-Trunk.txt b/Changelog-Trunk.txt index a11787a80..ca06d4b86 100644 --- a/Changelog-Trunk.txt +++ b/Changelog-Trunk.txt @@ -4,6 +4,7 @@ AS OF SVN REV. 5091, WE ARE NOW USING TRUNK. ALL UNTESTED BUGFIXES/FEATURES GO IF YOU HAVE A WORKING AND TESTED BUGFIX PUT IT INTO STABLE AS WELL AS TRUNK.
2006/04/30
+ * Fixed dangling pointer in pc_steal_item (missing lines) causing crash. [Lance]
* Fixed lack of initialization in chrif_authreq causing crashes in chrif_authok. [Lance]
* Fixed a logic error that was likely the cause of pet loot drops not
working. [Skotlex]
diff --git a/src/map/pc.c b/src/map/pc.c index 075ca173a..7d9cee17f 100644 --- a/src/map/pc.c +++ b/src/map/pc.c @@ -2926,6 +2926,8 @@ int pc_steal_item(struct map_session_data *sd,struct block_list *bl) if(!sd || !bl || bl->type != BL_MOB)
return 0;
+ md = (TBL_MOB *)bl;
+
if(md->state.steal_flag>battle_config.skill_steal_max_tries || status_get_mode(bl)&MD_BOSS || md->master_id ||
(md->class_>=1324 && md->class_<1364) || // prevent stealing from treasure boxes [Valaris]
map[md->bl.m].flag.nomobloot || // check noloot map flag [Lorky]
|