diff options
author | brain <brain@e03df62e-2008-0410-955e-edbf42e46eb7> | 2004-09-11 20:29:22 +0000 |
---|---|---|
committer | brain <brain@e03df62e-2008-0410-955e-edbf42e46eb7> | 2004-09-11 20:29:22 +0000 |
commit | 236d23e6540b437a77546410c8740d337e56db02 (patch) | |
tree | e72eefa354f9a38fd469dec734d5bb6afcd948d3 /src/inspircd.cpp | |
parent | e7f0a0fb7edf96abbddf72eadb490b5eb22447ec (diff) |
Changes for security based on RATS analysis
git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@856 e03df62e-2008-0410-955e-edbf42e46eb7
Diffstat (limited to 'src/inspircd.cpp')
-rw-r--r-- | src/inspircd.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/inspircd.cpp b/src/inspircd.cpp index 2a28a5ac6..20b831cc6 100644 --- a/src/inspircd.cpp +++ b/src/inspircd.cpp @@ -1728,7 +1728,7 @@ int loop_call(handlerfunc fn, char **parameters, int pcnt, userrec *u, int start { if (parameters[i]) { - strcat(plist,parameters[i]); + strlcat(plist,parameters[i],MAXBUF); } } |