if ( !a->a_comp_data && attr_converter && nibble_mem_allocator ) {
a->a_comp_data = malloc( sizeof( ComponentData ) );
/* Memory chunk pre-allocation for decoders */
- a->a_comp_data->cd_mem_op = nibble_mem_allocator ( 1024, 128 );
+ a->a_comp_data->cd_mem_op = nibble_mem_allocator ( 1024*4, 1024 );
a->a_comp_data->cd_tree = attr_converter (a, syn, bv);
}
/* Memory for storing will-be-extracted attribute values */
attr_nm = nibble_mem_allocator ( 1024*4 , 1024 );
- if ( !attr_nm )return LDAP_PROTOCOL_ERROR;
+ if ( !attr_nm ) return LDAP_PROTOCOL_ERROR;
/* Memory for storing component assertion values */
if( !ca->ca_comp_data.cd_mem_op ) {