From 9a5c473607700a04ccf087ab2d26f654c03d3396 Mon Sep 17 00:00:00 2001 From: Lance Date: Wed, 31 May 2006 07:55:58 +0000 Subject: [PATCH] * [Fixed]: - nullpo in pet.c caused by equipping without checking if the pet is available. git-svn-id: https://svn.code.sf.net/p/rathena/svn/trunk@6882 54d463be-8e91-2dee-dedb-b68131a5f0ec --- Changelog-Trunk.txt | 3 +++ src/map/clif.c | 6 ++++-- 2 files changed, 7 insertions(+), 2 deletions(-) diff --git a/Changelog-Trunk.txt b/Changelog-Trunk.txt index 508c3686be..625e74cf18 100644 --- a/Changelog-Trunk.txt +++ b/Changelog-Trunk.txt @@ -4,6 +4,9 @@ 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/05/31 + * [Fixed]: + - nullpo in pet.c caused by equipping without checking if the pet is available. + [Lance] * [Fixed]: - Latest client support completed! [Lance] * [Fixed]: diff --git a/src/map/clif.c b/src/map/clif.c index e704d756e6..57fd3d5b34 100644 --- a/src/map/clif.c +++ b/src/map/clif.c @@ -9263,8 +9263,10 @@ void clif_parse_EquipItem(int fd,struct map_session_data *sd) if(sd->inventory_data[index]->type == 10) RFIFOW(fd,4)=0x8000; // 矢を無理やり装備できるように(−−; pc_equipitem(sd,index,RFIFOW(fd,4)); - } else - pet_equipitem(sd,index); + } else{ + if(sd->pd) + pet_equipitem(sd,index); + } } }