mirror of
https://git.openldap.org/openldap/openldap.git
synced 2025-12-27 01:59:38 -05:00
(incorrect) variable used before set (ITS#4331)
This commit is contained in:
parent
1a217516f0
commit
90fad5a3a3
1 changed files with 1 additions and 1 deletions
|
|
@ -1839,7 +1839,7 @@ retry_add:;
|
|||
|
||||
dnParent( &dni.ndn, &noldp );
|
||||
dnParent( &entry->e_nname, &nnewp );
|
||||
if ( !dn_match( &noldp, &newp )) {
|
||||
if ( !dn_match( &noldp, &nnewp )) {
|
||||
dnParent( &entry->e_name, &newp );
|
||||
op->orr_newSup = &newp;
|
||||
op->orr_nnewSup = &nnewp;
|
||||
|
|
|
|||
Loading…
Reference in a new issue