Shortcut when no index info is present

This commit is contained in:
Howard Chu 2007-01-15 01:27:02 +00:00
parent e5285894ce
commit 1f853acfc9

View File

@ -482,8 +482,8 @@ bdb_index_entry(
AttrInfo *ai;
/* see if attribute has components to be indexed */
ai = bdb_attr_mask( op->o_bd->be_private, ap->a_desc->ad_type->sat_ad );
if ( ai ) cr_list = ai->ai_cr;
else cr_list = NULL;
if ( !ai ) continue;
cr_list = ai->ai_cr;
if ( attr_converter && cr_list ) {
syn = ap->a_desc->ad_type->sat_syntax;
ap->a_comp_data = op->o_tmpalloc( sizeof( ComponentData ), op->o_tmpmemctx );