Skip to content
Snippets Groups Projects
Commit 68a0e0d9 authored by Howard Chu's avatar Howard Chu
Browse files

Revert to ordering behavior of original attrs_free()

parent 822888ea
Branches
Tags
No related merge requests found
......@@ -185,17 +185,21 @@ comp_tree_free( Attribute *a )
void
attrs_free( Attribute *a )
{
Attribute *b;
Attribute *b, *tail, *next;
if ( a ) {
for(b = a ; ; b = b->a_next ) {
attr_clean( b );
if ( !b->a_next )
break;
}
tail = a;
do {
next = a->a_next;
attr_clean( a );
a->a_next = b;
b = a;
a = next;
} while ( next );
ldap_pvt_thread_mutex_lock( &attr_mutex );
b->a_next = attr_list;
attr_list = a;
tail->a_next = attr_list;
attr_list = b;
ldap_pvt_thread_mutex_unlock( &attr_mutex );
}
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment