mirror of
https://git.openldap.org/openldap/openldap.git
synced 2025-01-06 10:46:21 +08:00
Fix rev 1.312
This commit is contained in:
parent
4e75fa6345
commit
7dc2199bfd
@ -1629,7 +1629,8 @@ syncrepl_message_to_entry(
|
||||
if ( syncstate == LDAP_SYNC_PRESENT || syncstate == LDAP_SYNC_DELETE ) {
|
||||
/* NOTE: this could be done even before decoding the DN,
|
||||
* although encoding errors wouldn't be detected */
|
||||
return LDAP_SUCCESS;
|
||||
rc = LDAP_SUCCESS;
|
||||
goto done;
|
||||
}
|
||||
|
||||
if ( entry == NULL ) {
|
||||
@ -1733,7 +1734,8 @@ done:
|
||||
e = NULL;
|
||||
}
|
||||
}
|
||||
*entry = e;
|
||||
if ( entry )
|
||||
*entry = e;
|
||||
|
||||
return rc;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user