mirror of
https://git.openldap.org/openldap/openldap.git
synced 2025-12-25 00:59:45 -05:00
Entry *e could be freed uninitialized after goto return_results;
This commit is contained in:
parent
c46cd36088
commit
a632038df9
1 changed files with 1 additions and 1 deletions
|
|
@ -17,7 +17,7 @@ int
|
|||
bdb_compare( Operation *op, SlapReply *rs )
|
||||
{
|
||||
struct bdb_info *bdb = (struct bdb_info *) op->o_bd->be_private;
|
||||
Entry *e;
|
||||
Entry *e = NULL;
|
||||
EntryInfo *ei;
|
||||
Attribute *a;
|
||||
int manageDSAit = get_manageDSAit( op );
|
||||
|
|
|
|||
Loading…
Reference in a new issue