Don't duplicate e_bv in entry_dup()

This commit is contained in:
Luke Howard 2003-10-08 06:40:16 +00:00
parent 8c9f033aa5
commit 79a44ac26e

View File

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