Adjusting an initial buffer size for x509Certificate

This commit is contained in:
Sang Seok Lim 2004-12-22 01:24:12 +00:00
parent e3ab329d4e
commit 65026f4300

View file

@ -1207,7 +1207,7 @@ test_comp_filter_item(
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*4, 1024 );
a->a_comp_data->cd_mem_op = nibble_mem_allocator ( 1024*16, 1024 );
a->a_comp_data->cd_tree = attr_converter (a, syn, bv);
}