mirror of
https://git.openldap.org/openldap/openldap.git
synced 2025-12-25 09:09:54 -05:00
Fixed parsing of noidlen
This commit is contained in:
parent
fbcbf29651
commit
e6f9faa94a
1 changed files with 1 additions and 1 deletions
|
|
@ -676,7 +676,7 @@ parse_noidlen(char **sp, int *code, int *len)
|
|||
}
|
||||
if ( **sp == '{' ) {
|
||||
(*sp)++;
|
||||
*len = atoi(**sp);
|
||||
*len = atoi(*sp);
|
||||
while ( isdigit(**sp) )
|
||||
(*sp)++;
|
||||
(*sp)++;
|
||||
|
|
|
|||
Loading…
Reference in a new issue