ITS#6972 fix double-free in autogroup

This commit is contained in:
Howard Chu 2011-11-01 13:40:57 -07:00
parent b68fa5ecd7
commit 3a096b300c

View file

@ -630,11 +630,12 @@ autogroup_add_group( Operation *op, autogroup_info_t *agi, autogroup_def_t *agd,
}
if ( i > 1 ) {
Debug( LDAP_DEBUG_ANY, "autogroup_add_group: to much attributes specified in url <%s>\n",
Debug( LDAP_DEBUG_ANY, "autogroup_add_group: too many attributes specified in url <%s>\n",
bv->bv_val, 0, 0);
/* FIXME: error? */
ldap_free_urldesc( lud );
ch_free( agf );
continue;
}
agf->agf_anlist = str2anlist( NULL, lud->lud_attrs[0], "," );