diff options
-rw-r--r-- | Changelog-Trunk.txt | 2 | ||||
-rw-r--r-- | src/char_sql/int_mail.c | 1 |
2 files changed, 3 insertions, 0 deletions
diff --git a/Changelog-Trunk.txt b/Changelog-Trunk.txt index f9167eaa7..42c756fe8 100644 --- a/Changelog-Trunk.txt +++ b/Changelog-Trunk.txt @@ -3,6 +3,8 @@ Date Added AS OF SVN REV. 5091, WE ARE NOW USING TRUNK. ALL UNTESTED BUGFIXES/FEATURES GO INTO TRUNK. IF YOU HAVE A WORKING AND TESTED BUGFIX PUT IT INTO STABLE AS WELL AS TRUNK. +2007/11/26 + * Fixed a memory leak in mail_savemessage (src\char_sql\int_mail.c). [FlavioJS] 2007/11/25 * Rev. 11804 Giant Fly Wings are now blocked on noteleport maps and duels. [L0ne_W0lf] 2007/11/24 diff --git a/src/char_sql/int_mail.c b/src/char_sql/int_mail.c index 1a49f787f..20db63d30 100644 --- a/src/char_sql/int_mail.c +++ b/src/char_sql/int_mail.c @@ -133,6 +133,7 @@ static int mail_savemessage(struct mail_message* msg) } else j = (int)SqlStmt_LastInsertId(stmt); + SqlStmt_Free(stmt); StringBuf_Destroy(&buf); // return the ID of the new mail |