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... :/