Increase the base size to 100 000 we are using more than that.

svn path=/trunk/; revision=33020
This commit is contained in:
Anders Broman 2010-05-29 22:29:09 +00:00
parent d19f63e8f8
commit d0888eb389
1 changed files with 2 additions and 2 deletions

View File

@ -4496,8 +4496,8 @@ proto_register_field_init(header_field_info *hfinfo, const int parent)
/* if we always add and never delete, then id == len - 1 is correct */
if(gpa_hfinfo.len>=gpa_hfinfo.allocated_len){
if(!gpa_hfinfo.hfi){
gpa_hfinfo.allocated_len=1000;
gpa_hfinfo.hfi=g_malloc(sizeof(header_field_info *)*1000);
gpa_hfinfo.allocated_len=100000;
gpa_hfinfo.hfi=g_malloc(sizeof(header_field_info *)*100000);
} else {
gpa_hfinfo.allocated_len+=1000;
gpa_hfinfo.hfi=g_realloc(gpa_hfinfo.hfi, sizeof(header_field_info *)*gpa_hfinfo.allocated_len);