diff options
-rw-r--r-- | Changelog-Trunk.txt | 1 | ||||
-rw-r--r-- | 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)); |