mirror of
https://github.com/anope/anope.git
synced 2026-07-02 16:13:12 +02:00
BUILD : 1.7.14 (1043) BUGS : NOTES : NULLified *s and *t in moduleGetConfigDirective in src/modules.c by default
git-svn-id: svn://svn.anope.org/anope/trunk@1043 31f1291d-b8d6-0310-a050-a5561fc1590b git-svn-id: http://anope.svn.sourceforge.net/svnroot/anope/trunk@767 5417fbe8-f217-4b02-8779-1006273d7864
This commit is contained in:
parent
b0f345e5a8
commit
189845ea90
@@ -15,6 +15,7 @@ Provided by Anope Dev. <dev@anope.org> - 2006
|
||||
06/03 F Removed INTTYPE_WORKAROUND stuff which could cause warnings. [#509]
|
||||
06/03 F Fixed compiler warnings. [#511]
|
||||
06/10 F Win32 Makefile for plexus3 support. [#520]
|
||||
06/11 F Two pointers in modules.c weren't NULL-ified by default. [ #00]
|
||||
|
||||
Provided by ThaPrince <jon@vile.com> - 2006
|
||||
05/19 A Plexus 3 support. [ #00]
|
||||
|
||||
+2
-1
@@ -2425,7 +2425,8 @@ int moduleGetConfigDirective(Directive * d)
|
||||
int linenum = 0;
|
||||
int ac = 0;
|
||||
char *av[MAXPARAMS];
|
||||
char *s, *t;
|
||||
char *s = NULL;
|
||||
char *t = NULL;
|
||||
int retval = 1;
|
||||
|
||||
config = fopen(SERVICES_CONF, "r");
|
||||
|
||||
+5
-1
@@ -9,10 +9,14 @@ VERSION_MAJOR="1"
|
||||
VERSION_MINOR="7"
|
||||
VERSION_PATCH="14"
|
||||
VERSION_EXTRA=""
|
||||
VERSION_BUILD="1042"
|
||||
VERSION_BUILD="1043"
|
||||
|
||||
# $Log$
|
||||
#
|
||||
# BUILD : 1.7.14 (1043)
|
||||
# BUGS :
|
||||
# NOTES : NULLified *s and *t in moduleGetConfigDirective in src/modules.c by default
|
||||
#
|
||||
# BUILD : 1.7.14 (1042)
|
||||
# BUGS : 520
|
||||
# NOTES : Fixed src/protocol/Makefile.win32 for plexus->plexus2/plexus3 change
|
||||
|
||||
Reference in New Issue
Block a user