mirror of
https://git.openldap.org/openldap/openldap.git
synced 2025-12-26 01:29:59 -05:00
ITS#6169: do not access freed memory in dds_expire()
This commit is contained in:
parent
0d497278e9
commit
df85e3173d
1 changed files with 1 additions and 2 deletions
|
|
@ -243,10 +243,9 @@ done_search:;
|
|||
de->de_ndn.bv_val, rs.sr_err );
|
||||
break;
|
||||
}
|
||||
|
||||
|
||||
if ( de != NULL ) {
|
||||
*dep = de->de_next;
|
||||
dep = &de->de_next;
|
||||
op->o_tmpfree( de, op->o_tmpmemctx );
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in a new issue