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:
parent
77059470fb
commit
3808a70cd9
@@ -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
|
||||
--------------------
|
||||
|
||||
@@ -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;
|
||||
}
|
||||
|
||||
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user