Commit eb3de355 authored by unknown's avatar unknown

Bug fix: should use my_multi_malloc() here!!!

parent ca8aebf5
...@@ -265,13 +265,12 @@ int rtree_split_page(MI_INFO *info, MI_KEYDEF *keyinfo, uchar *page, uchar *key, ...@@ -265,13 +265,12 @@ int rtree_split_page(MI_INFO *info, MI_KEYDEF *keyinfo, uchar *page, uchar *key,
n_dim = keyinfo->keysegs / 2; n_dim = keyinfo->keysegs / 2;
{ if (!my_multi_malloc(MYF(0),
int coord_buf_size = n_dim * 2 * sizeof(double) * (max_keys + 1 + 4); &coord_buf, n_dim * 2 * sizeof(double) * (max_keys + 1 + 4),
coord_buf = &task, sizeof(SplitStruct) * (max_keys + 1),
my_alloca(coord_buf_size + sizeof(SplitStruct) * (max_keys + 1)); NullS))
return -1;
task = (SplitStruct *)(((char *)coord_buf) + coord_buf_size);
}
next_coord = coord_buf; next_coord = coord_buf;
stop = task + max_keys; stop = task + max_keys;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment