mirror of
https://git.openldap.org/openldap/openldap.git
synced 2025-12-25 09:09:54 -05:00
ITS#4040 fix uniqueMemberMatch when value is zero-length
This commit is contained in:
parent
9213019114
commit
5697278574
1 changed files with 1 additions and 1 deletions
|
|
@ -1086,8 +1086,8 @@ uniqueMemberMatch(
|
|||
}
|
||||
}
|
||||
|
||||
valueDN = *value;
|
||||
if ( !BER_BVISEMPTY( value ) ) {
|
||||
valueDN = *value;
|
||||
|
||||
valueUID.bv_val = strrchr( valueDN.bv_val, '#' );
|
||||
if ( !BER_BVISNULL( &valueUID ) ) {
|
||||
|
|
|
|||
Loading…
Reference in a new issue