diff options
author | toms <toms@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2008-04-14 15:01:04 +0000 |
---|---|---|
committer | toms <toms@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2008-04-14 15:01:04 +0000 |
commit | 9ed480bc0d17a069cd8430d3ccf2d5893c5c07ac (patch) | |
tree | 6f7424ccf45c136a23009b9f5150f0c5af155947 | |
parent | 17e51850eb7db6931d2cf2c01a249d12e56eaa71 (diff) | |
download | hercules-9ed480bc0d17a069cd8430d3ccf2d5893c5c07ac.tar.gz hercules-9ed480bc0d17a069cd8430d3ccf2d5893c5c07ac.tar.bz2 hercules-9ed480bc0d17a069cd8430d3ccf2d5893c5c07ac.tar.xz hercules-9ed480bc0d17a069cd8430d3ccf2d5893c5c07ac.zip |
Fixed a memory leak in mapif_quests_fromsql
git-svn-id: https://rathena.svn.sourceforge.net/svnroot/rathena/trunk@12592 54d463be-8e91-2dee-dedb-b68131a5f0ec
-rw-r--r-- | Changelog-Trunk.txt | 1 | ||||
-rw-r--r-- | src/char_sql/int_quest.c | 3 | ||||
-rw-r--r-- | src/char_sql/int_quest.h | 3 |
3 files changed, 4 insertions, 3 deletions
diff --git a/Changelog-Trunk.txt b/Changelog-Trunk.txt index 422294e54..0a3815cf5 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/04/14 + * Fixed a memory leak in mapif_quests_fromsql [Toms] * Fixed a typo in char_sql/char.c [Toms] * Fixed a bug in the disconnection part char-server (not sending you offline) [Toms] * Changes to the configure script: [FlavioJS] diff --git a/src/char_sql/int_quest.c b/src/char_sql/int_quest.c index 86ebccdae..e198754f6 100644 --- a/src/char_sql/int_quest.c +++ b/src/char_sql/int_quest.c @@ -69,8 +69,7 @@ int mapif_quests_fromsql(int char_id, struct quest questlog[]) questlog[i].num_objectives = j; } - - + SqlStmt_Free(stmt); return count; } diff --git a/src/char_sql/int_quest.h b/src/char_sql/int_quest.h index 2b7df67dd..f2a0b626e 100644 --- a/src/char_sql/int_quest.h +++ b/src/char_sql/int_quest.h @@ -9,4 +9,5 @@ struct quest; int inter_quest_parse_frommap(int fd); -#endif
\ No newline at end of file +#endif + |