Fixed yet another remote buffer overflow.

git-svn-id: https://svn.code.sf.net/p/fteqw/code/trunk@2337 fc73d0e0-1445-4013-8a0c-d673dee63da5
This commit is contained in:
Mark Olsen 2006-06-30 15:45:16 +00:00
parent 285f6e6ca8
commit 997fa53005
1 changed files with 5 additions and 2 deletions

View File

@ -531,6 +531,9 @@ dblbreak:
((struct sockaddr_in *)sadr)->sin_port = 0;
if (strlen(s) >= sizeof(copy)-1)
return false;
strcpy (copy, s);
// strip off a trailing :port if present
for (colon = copy ; *colon ; colon++)