openldap/servers/slapd/mods.c

72 lines
1.3 KiB
C
Raw Normal View History

/*
2002-01-05 05:17:25 +08:00
* Copyright 1998-2002 The OpenLDAP Foundation, All Rights Reserved.
* COPYING RESTRICTIONS APPLY, see COPYRIGHT file
*/
/*
* Copyright (c) 1995 Regents of the University of Michigan.
* All rights reserved.
*
* Redistribution and use in source and binary forms are permitted
* provided that this notice is preserved and that due credit is given
* to the University of Michigan at Ann Arbor. The name of the University
* may not be used to endorse or promote products derived from this
* software without specific prior written permission. This software
* is provided ``as is'' without express or implied warranty.
*/
#include "portable.h"
#include "slap.h"
void
slap_mod_free(
Modification *mod,
int freeit
)
{
#if 0
2002-01-02 20:34:35 +08:00
if ( mod->sm_type.bv_val)
free( mod->sm_type.bv_val );
#endif
if ( mod->sm_bvalues != NULL )
2002-01-02 19:00:36 +08:00
bvarray_free( mod->sm_bvalues );
if( freeit )
free( mod );
}
void
slap_mods_free(
Modifications *ml
)
{
Modifications *next;
for ( ; ml != NULL; ml = next ) {
next = ml->sml_next;
slap_mod_free( &ml->sml_mod, 0 );
free( ml );
}
}
void
slap_modlist_free(
LDAPModList *ml
)
{
LDAPModList *next;
for ( ; ml != NULL; ml = next ) {
next = ml->ml_next;
if (ml->ml_type)
free( ml->ml_type );
if ( ml->ml_bvalues != NULL )
ber_bvecfree( ml->ml_bvalues );
free( ml );
}
}