Skip to content
Snippets Groups Projects
Commit 3cd0d406 authored by rswindell's avatar rswindell
Browse files

A little buffer overflow protection in route_circ().

parent 66bc0a47
No related branches found
No related tags found
No related merge requests found
......@@ -63,10 +63,9 @@ bool route_circ(char *via, char *id)
{
char str[256],*p,*sp;
strcpy(str,via);
SAFECOPY(str,via);
p=str;
while(*p && *p<=' ')
p++;
SKIP_WHITESPACE(p);
while(*p) {
sp=strchr(p,'/');
if(sp) *sp=0;
......@@ -74,7 +73,8 @@ bool route_circ(char *via, char *id)
return(true);
if(!sp)
break;
p=sp+1; }
p=sp+1;
}
return(false);
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment