mirror of
https://git.openldap.org/openldap/openldap.git
synced 2026-01-02 13:09:42 -05:00
parsing bug (does not affect RE22)
This commit is contained in:
parent
3c1c61c5ef
commit
0cd5b9f766
1 changed files with 4 additions and 4 deletions
|
|
@ -237,12 +237,12 @@ static int slap_parseURI( Operation *op, struct berval *uri,
|
|||
} else {
|
||||
return LDAP_PROTOCOL_ERROR;
|
||||
}
|
||||
}
|
||||
|
||||
if ( bv.bv_val[ 0 ] != ':' ) {
|
||||
return LDAP_PROTOCOL_ERROR;
|
||||
} else {
|
||||
if ( bv.bv_val[ 0 ] != ':' )
|
||||
return LDAP_PROTOCOL_ERROR;
|
||||
bv.bv_val++;
|
||||
}
|
||||
bv.bv_val++;
|
||||
|
||||
bv.bv_val += strspn( bv.bv_val, " " );
|
||||
/* jump here in case no type specification was present
|
||||
|
|
|
|||
Loading…
Reference in a new issue