Entry *e could be freed uninitialized after goto return_results;

This commit is contained in:
Hallvard Furuseth 2003-05-02 13:24:44 +00:00
parent c46cd36088
commit a632038df9

View file

@ -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 );