Skip to content
Snippets Groups Projects
Commit 65026f43 authored by Sang Seok Lim's avatar Sang Seok Lim
Browse files

Adjusting an initial buffer size for x509Certificate

parent e3ab329d
No related branches found
No related tags found
No related merge requests found
......@@ -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);
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment