mirror of
https://git.openldap.org/openldap/openldap.git
synced 2026-01-07 23:51:21 -05:00
Fix rev 1.312
This commit is contained in:
parent
4e75fa6345
commit
7dc2199bfd
1 changed files with 4 additions and 2 deletions
|
|
@ -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 a new issue