From 13503f0a21bbf0a9edb7cfa5dee36079b862fd11 Mon Sep 17 00:00:00 2001 From: "rob rob@31f1291d-b8d6-0310-a050-a5561fc1590b" Date: Sun, 19 Sep 2004 10:40:24 +0000 Subject: [PATCH] BUILD : 1.7.5 (352) BUGS : N/A NOTES : corrected a semi-colon that my compiled dosnt mind, but certuss does :) git-svn-id: svn://svn.anope.org/anope/trunk@352 31f1291d-b8d6-0310-a050-a5561fc1590b git-svn-id: http://anope.svn.sourceforge.net/svnroot/anope/trunk@228 5417fbe8-f217-4b02-8779-1006273d7864 --- src/modules.c | 8 ++++---- version.log | 6 +++++- 2 files changed, 9 insertions(+), 5 deletions(-) diff --git a/src/modules.c b/src/modules.c index eca88077f..7321c43b9 100644 --- a/src/modules.c +++ b/src/modules.c @@ -1859,7 +1859,7 @@ void moduleDelData(ModuleData **md, char *key) current->next = NULL; free(current); } - prev = current;; + prev = current; current = next; } } @@ -1893,7 +1893,7 @@ void moduleDelAllData(ModuleData **md) current->next = NULL; free(current); } - prev = current;; + prev = current; current = next; } free(mod_name); @@ -1945,7 +1945,7 @@ void moduleDelAllDataMod(Module *m) moduleCleanStruct(&ci->memos.memos[j].moduleData); } } - } + } if (freeme) { free(mod_current_module_name); @@ -1959,7 +1959,7 @@ void moduleDelAllDataMod(Module *m) * @param moduleData the moduleData struct to "clean" **/ void moduleCleanStruct(ModuleData **moduleData) { - ModuleData *current = *moduleData;; + ModuleData *current = *moduleData; ModuleData *next = NULL; while(current) { diff --git a/version.log b/version.log index 517fffe00..f2be068f8 100644 --- a/version.log +++ b/version.log @@ -8,10 +8,14 @@ VERSION_MAJOR="1" VERSION_MINOR="7" VERSION_PATCH="5" -VERSION_BUILD="351" +VERSION_BUILD="352" # $Log$ # +# BUILD : 1.7.5 (352) +# BUGS : N/A +# NOTES : corrected a semi-colon that my compiled dosnt mind, but certuss does :) +# # BUILD : 1.7.5 (351) # BUGS : N/A # NOTES : Rewrote the internals of moduleData, this will save _lots_ of memory especially on larger networks. The downside is modules using it need to make a tiny, tiny change... :/