diff options
author | toms <toms@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2006-08-15 12:02:00 +0000 |
---|---|---|
committer | toms <toms@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2006-08-15 12:02:00 +0000 |
commit | 4ea2f6554e5d10287c6f00007103ab3ca4394d55 (patch) | |
tree | f09f015f3682b30d88ae4d3894b417e933243e68 /src/map/unit.c | |
parent | b687a131f4b68624ec4b924ebaaa08782d71f754 (diff) | |
download | hercules-4ea2f6554e5d10287c6f00007103ab3ca4394d55.tar.gz hercules-4ea2f6554e5d10287c6f00007103ab3ca4394d55.tar.bz2 hercules-4ea2f6554e5d10287c6f00007103ab3ca4394d55.tar.xz hercules-4ea2f6554e5d10287c6f00007103ab3ca4394d55.zip |
Fixed SIGSEGV with homunc save
git-svn-id: https://rathena.svn.sourceforge.net/svnroot/rathena/trunk@8288 54d463be-8e91-2dee-dedb-b68131a5f0ec
Diffstat (limited to 'src/map/unit.c')
-rw-r--r-- | src/map/unit.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/map/unit.c b/src/map/unit.c index 90095d13a..7d4af0dfb 100644 --- a/src/map/unit.c +++ b/src/map/unit.c @@ -1784,8 +1784,6 @@ int unit_free(struct block_list *bl) { merc_hom_hungry_timer_delete(hd); merc_natural_heal_timer_delete(hd); if(sd) { - sd->hd = NULL; - hd->master = NULL; if (sd->homunculus.intimacy > 0) merc_save(hd); else @@ -1794,6 +1792,8 @@ int unit_free(struct block_list *bl) { sd->status.hom_id = 0; sd->homunculus.hom_id = 0; } + sd->hd = NULL; + hd->master = NULL; } } |