From d037edba1e53cc78a2a79bc4dc1fae6d013e589d Mon Sep 17 00:00:00 2001 From: ultramage Date: Wed, 27 Feb 2008 20:18:13 +0000 Subject: Fixed @reloadmobdb producing memory leaks in pet db (bugreport:1030) git-svn-id: https://rathena.svn.sourceforge.net/svnroot/rathena/trunk@12250 54d463be-8e91-2dee-dedb-b68131a5f0ec --- Changelog-Trunk.txt | 1 + src/map/pet.c | 3 +-- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Changelog-Trunk.txt b/Changelog-Trunk.txt index cdfe88a31..bc1fecf16 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. 2008/02/27 + * Fixed @reloadmobdb producing memory leaks in pet db (bugreport:1030) * Patched an unresolved case where knocking back a bard/dancer would cause the mapserver to crash (bugreport:1043) * Fixed Apple of Idun not checking for bard soul link (bugreport:1028) diff --git a/src/map/pet.c b/src/map/pet.c index f413863a0..f8ee3e216 100644 --- a/src/map/pet.c +++ b/src/map/pet.c @@ -1237,7 +1237,7 @@ int read_petdb() // Remove any previous scripts in case reloaddb was invoked. for( j = 0; j < MAX_PET_DB; j++ ) if (pet_db[j].script) { - aFree(pet_db[j].script); + script_free_code(pet_db[j].script); pet_db[j].script = NULL; } @@ -1332,7 +1332,6 @@ int read_petdb() *------------------------------------------*/ int do_init_pet(void) { - memset(pet_db,0,sizeof(pet_db)); read_petdb(); item_drop_ers = ers_new(sizeof(struct item_drop)); -- cgit v1.2.3-70-g09d2