ITS#3616 skip naming checks for entry with zero-length DN

This commit is contained in:
Howard Chu 2005-04-09 09:59:40 +00:00
parent d9df909ba4
commit 0c0cb6a924

View File

@ -739,6 +739,10 @@ entry_naming_check(
ber_len_t cnt;
int rc = LDAP_SUCCESS;
if ( BER_BVISEMPTY( &e->e_name )) {
return LDAP_SUCCESS;
}
/*
* Get attribute type(s) and attribute value(s) of our RDN
*/