diff options
author | certus certus@31f1291d-b8d6-0310-a050-a5561fc1590b <certus certus@31f1291d-b8d6-0310-a050-a5561fc1590b@5417fbe8-f217-4b02-8779-1006273d7864> | 2004-07-15 13:43:35 +0000 |
---|---|---|
committer | certus certus@31f1291d-b8d6-0310-a050-a5561fc1590b <certus certus@31f1291d-b8d6-0310-a050-a5561fc1590b@5417fbe8-f217-4b02-8779-1006273d7864> | 2004-07-15 13:43:35 +0000 |
commit | 8ce96b1724a208e2ab3162a4d3ed095b5758b996 (patch) | |
tree | 2cce2c313a534f0e0348bf75dbc9035594b7360c | |
parent | bc5c5e69b92c96cf429fb0de9630256cbe66cac8 (diff) |
BUILD : 1.7.4 (261) BUGS : NOTES : fixed a tiny memleak in the db routine
git-svn-id: svn://svn.anope.org/anope/trunk@261 31f1291d-b8d6-0310-a050-a5561fc1590b
git-svn-id: http://anope.svn.sourceforge.net/svnroot/anope/trunk@167 5417fbe8-f217-4b02-8779-1006273d7864
-rw-r--r-- | Changes | 1 | ||||
-rw-r--r-- | datafiles.c | 3 | ||||
-rw-r--r-- | version.log | 6 |
3 files changed, 9 insertions, 1 deletions
@@ -3,6 +3,7 @@ Anope Version S V N Provided by Anope Dev. <dev@anope.org> - 2004 07/05 A Warning when LocalAddress conflicts with RemoteServer. [#118] 06/18 A Added proper Bahamut1.8 support. [ #55] +07/15 F Fixed a tiny memleak in the db routine [ #00] 07/15 F Updated Dutch language file. [ #00] 07/14 F Added CHECK to the memoserv help menu. [ #00] 07/12 F Bots will join a channel even for ignored users [ #00] diff --git a/datafiles.c b/datafiles.c index cbd031cd8..5a5512e80 100644 --- a/datafiles.c +++ b/datafiles.c @@ -187,6 +187,9 @@ static dbFILE *open_db_write(const char *service, const char *filename, #else ; #endif + /* Then the Lord said unto Moses, thou shalt free what thou hast malloced + * -- codemastr */ + free(f); errno = errno_save; return NULL; } diff --git a/version.log b/version.log index f63c060bc..3f818d69d 100644 --- a/version.log +++ b/version.log @@ -8,10 +8,14 @@ VERSION_MAJOR="1" VERSION_MINOR="7" VERSION_PATCH="4" -VERSION_BUILD="260" +VERSION_BUILD="261" # $Log$ # +# BUILD : 1.7.4 (261) +# BUGS : +# NOTES : fixed a tiny memleak in the db routine +# # BUILD : 1.7.4 (260) # BUGS : # NOTES : Updated nl.l |