mirror of
https://git.openldap.org/openldap/openldap.git
synced 2025-12-27 18:19:52 -05:00
fix printableStringValidate return value bug
This commit is contained in:
parent
76e936e274
commit
a7349c100e
1 changed files with 3 additions and 1 deletions
|
|
@ -2122,7 +2122,9 @@ printablesStringValidate(
|
|||
}
|
||||
}
|
||||
|
||||
if( len == 0 ) LDAP_INVALID_SYNTAX;
|
||||
if( len == 0 ) {
|
||||
return LDAP_INVALID_SYNTAX;
|
||||
}
|
||||
|
||||
return LDAP_SUCCESS;
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in a new issue