Skip to content
Snippets Groups Projects
Commit 79a44ac2 authored by Luke Howard's avatar Luke Howard
Browse files

Don't duplicate e_bv in entry_dup()

parent 8c9f033a
Branches
Tags
No related merge requests found
......@@ -757,7 +757,8 @@ Entry *entry_dup( Entry *e )
ber_dupbv( &ret->e_nname, &e->e_nname );
ret->e_attrs = attrs_dup( e->e_attrs );
ret->e_ocflags = e->e_ocflags;
ber_dupbv( &ret->e_bv, &e->e_bv );
ret->e_bv.bv_val = NULL;
ret->e_bv.bv_len = 0;
ret->e_private = NULL;
}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment