mirror of
https://git.openldap.org/openldap/openldap.git
synced 2025-03-07 14:18:15 +08:00
fix printableStringValidate return value bug
This commit is contained in:
parent
76e936e274
commit
a7349c100e
@ -2122,7 +2122,9 @@ printablesStringValidate(
|
||||
}
|
||||
}
|
||||
|
||||
if( len == 0 ) LDAP_INVALID_SYNTAX;
|
||||
if( len == 0 ) {
|
||||
return LDAP_INVALID_SYNTAX;
|
||||
}
|
||||
|
||||
return LDAP_SUCCESS;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user