]> git.sur5r.net Git - openldap/blobdiff - servers/slapd/attr.c
minor naming cleanup; improvements to DN mapping layer; major docs update
[openldap] / servers / slapd / attr.c
index 07c3e4df312d6c773e30610818b22dc905179f33..8908a65da90cc9a986a329e442740e9d3b90a8da 100644 (file)
@@ -2,7 +2,7 @@
 /* $OpenLDAP$ */
 /* This work is part of OpenLDAP Software <http://www.openldap.org/>.
  *
- * Copyright 1998-2004 The OpenLDAP Foundation.
+ * Copyright 1998-2005 The OpenLDAP Foundation.
  * All rights reserved.
  *
  * Redistribution and use in source and binary forms, with or without
 
 #include "slap.h"
 
-#ifdef LDAP_COMP_MATCH
-extern free_component_func* component_destructor;
-#endif
 void
 attr_free( Attribute *a )
 {
-       if ( a->a_nvals && a->a_nvals != a->a_vals )
+       if ( a->a_nvals && a->a_nvals != a->a_vals ) {
                ber_bvarray_free( a->a_nvals );
+       }
        ber_bvarray_free( a->a_vals );
+       free( a );
+}
+
 #ifdef LDAP_COMP_MATCH
-       if ( component_destructor && a->a_comp_data &&  a->a_comp_data->cd_mem_op ) {
-               component_destructor( a->a_comp_data->cd_mem_op );
-               free ( a->a_comp_data );
+void
+comp_tree_free( Attribute *a )
+{
+       Attribute *next;
+
+       for( ; a != NULL ; a = next ) {
+               next = a->a_next;
+               if ( component_destructor && a->a_comp_data ) {
+                       if ( a->a_comp_data->cd_mem_op )
+                               component_destructor( a->a_comp_data->cd_mem_op );
+                       free ( a->a_comp_data );
+               }
        }
-#endif
-       free( a );
 }
+#endif
 
 void
 attrs_free( Attribute *a )