forked from mirrors/treebird
Fix path / crash
FossilOrigin-Name: babf8b543e34d304310ef1444e435ffb524ed651b5ef5f917f0fd00488e284a7
This commit is contained in:
parent
cff674a103
commit
0d6328fa98
1 changed files with 14 additions and 0 deletions
14
src/path.c
14
src/path.c
|
@ -62,11 +62,25 @@ int parse_path(struct session* ssn,
|
|||
tmp = NULL;
|
||||
str_size = 0;
|
||||
}
|
||||
else if (state == PARSE_NEUTRAL) {
|
||||
if (p[j] == p2[i])
|
||||
break;
|
||||
else {
|
||||
fail = 1;
|
||||
goto breakpt;
|
||||
}
|
||||
}
|
||||
|
||||
if (fin) goto breakpt;
|
||||
break;
|
||||
case ':':
|
||||
state = PARSE_READ;
|
||||
/* Abort early */
|
||||
if (p2[j] == '\0')
|
||||
{
|
||||
fail = 1;
|
||||
goto breakpt;
|
||||
}
|
||||
// fall
|
||||
default:
|
||||
if (state == PARSE_NEUTRAL)
|
||||
|
|
Loading…
Reference in a new issue