1
0
mirror of https://github.com/anope/anope.git synced 2026-06-26 07:56:39 +02:00

BUILD : 1.7.14 (1047) BUGS : 464 NOTES : Added cleanup code to tools/anopesmtp to clear out used memory etc...

git-svn-id: svn://svn.anope.org/anope/trunk@1047 31f1291d-b8d6-0310-a050-a5561fc1590b


git-svn-id: http://anope.svn.sourceforge.net/svnroot/anope/trunk@771 5417fbe8-f217-4b02-8779-1006273d7864
This commit is contained in:
geniusdex geniusdex@31f1291d-b8d6-0310-a050-a5561fc1590b
2006-06-13 11:09:40 +00:00
parent d4674e1e67
commit aaa81d2dfb
3 changed files with 39 additions and 1 deletions
+1
View File
@@ -19,6 +19,7 @@ Provided by Anope Dev. <dev@anope.org> - 2006
06/11 F Updated InspIRCd protocol support module. [ #00]
06/11 F Module Clear Error macro was broken on *BSD. [#515]
06/13 F Walking memory using wrong pointer in moduleGetConfigDirective. [#516]
06/13 F Added cleanup code to tools/anopesmtp. [#464]
Provided by ThaPrince <jon@vile.com> - 2006
05/19 A Plexus 3 support. [ #00]
+33
View File
@@ -492,6 +492,35 @@ void smtp_disconnect()
/*************************************************************************/
void mail_cleanup()
{
struct smtp_header *headers, *nexth;
struct smtp_body_line *body, *nextb;
if (mail.from)
free(mail.from);
if (mail.to)
free(mail.to);
headers = mail.smtp_headers;
while (headers) {
nexth = headers->next;
free(headers->header);
free(headers);
headers = nexth;
}
body = mail.smtp_body;
while (body) {
nextb = body->next;
free(body->line);
free(body);
body = nextb;
}
}
/*************************************************************************/
int main(int argc, char *argv[])
{
char buf[8192];
@@ -556,12 +585,16 @@ int main(int argc, char *argv[])
if (!smtp_connect(server, port)) {
alog("SMTP: failed to connect to %s:%d",server, port);
mail_cleanup();
return 0;
}
if (!smtp_send_email()) {
alog("SMTP: error during sending of mail");
mail_cleanup();
return 0;
}
smtp_disconnect();
mail_cleanup();
return 1;
}
+5 -1
View File
@@ -9,10 +9,14 @@ VERSION_MAJOR="1"
VERSION_MINOR="7"
VERSION_PATCH="14"
VERSION_EXTRA=""
VERSION_BUILD="1046"
VERSION_BUILD="1047"
# $Log$
#
# BUILD : 1.7.14 (1047)
# BUGS : 464
# NOTES : Added cleanup code to tools/anopesmtp to clear out used memory etc...
#
# BUILD : 1.7.14 (1046)
# BUGS :
# NOTES : We were walking memory in moduleGetConfigDirecte with an allocated pointer, and free-ing it later when it was past the allocatrd space... We now store the original pointer so we can free it correctly :)