1
0
mirror of https://github.com/anope/anope.git synced 2026-07-08 18:03:13 +02:00

# BUILD : 1.7.14 (1031) # BUGS : 504 # NOTES : fixed memleak, thx to trystan

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


git-svn-id: http://anope.svn.sourceforge.net/svnroot/anope/trunk@755 5417fbe8-f217-4b02-8779-1006273d7864
This commit is contained in:
certus certus@31f1291d-b8d6-0310-a050-a5561fc1590b
2006-05-13 09:20:19 +00:00
parent 77059470fb
commit 3808a70cd9
3 changed files with 9 additions and 0 deletions
+1
View File
@@ -6,6 +6,7 @@ Provided by Anope Dev. <dev@anope.org> - 2006
04/08 F Fixed SGLine stuff on inspircd (not supported). [#489]
04/20 F Fixed index of backtrace(). [#499]
04/29 F Added is_on_chan() check for fantasy kick commands. [#501]
05/13 F Fixed memleak in moduleGetConfigDirective(). [#504]
Anope Version 1.7.14
--------------------
+4
View File
@@ -2483,6 +2483,10 @@ int moduleGetConfigDirective(Directive * d)
retval = parse_directive(d, dir, ac, av, linenum, 0, s);
}
}
if (dir)
free(dir);
if (s)
free(s);
fclose(config);
return retval;
}
+4
View File
@@ -13,6 +13,10 @@ VERSION_BUILD="1030"
# $Log$
#
# BUILD : 1.7.14 (1031)
# BUGS : 504
# NOTES : fixed memleak, thx to trystan
#
# BUILD : 1.7.14 (1030)
# BUGS :
# NOTES : fixed coding booboo, thx to viper