fix empty uniqueMember dn portion (ITS#3247)

This commit is contained in:
Pierangelo Masarati 2004-07-18 21:40:16 +00:00
parent 47415023b4
commit 448e2dcad4

View File

@ -1093,14 +1093,12 @@ uniqueMemberMatch(
{
int match;
struct berval *asserted = (struct berval *) assertedValue;
struct berval assertedDN = BER_BVNULL;
struct berval assertedDN = *asserted;
struct berval assertedUID = BER_BVNULL;
struct berval valueDN = BER_BVNULL;
struct berval valueUID = BER_BVNULL;
if( !BER_BVISEMPTY( asserted ) ) {
assertedDN = *asserted;
if ( !BER_BVISEMPTY( asserted ) ) {
assertedUID.bv_val = strrchr( assertedDN.bv_val, '#' );
if ( !BER_BVISNULL( &assertedUID ) ) {
assertedUID.bv_val++;