Commit d5030a05 authored by ram@mysql.r18.ru's avatar ram@mysql.r18.ru

Bug fix: should use my_free() instead of my_afree() after my_multi_malloc().

parent 0002beb7
...@@ -340,6 +340,6 @@ int rtree_split_page(MI_INFO *info, MI_KEYDEF *keyinfo, uchar *page, uchar *key, ...@@ -340,6 +340,6 @@ int rtree_split_page(MI_INFO *info, MI_KEYDEF *keyinfo, uchar *page, uchar *key,
my_afree((byte*)new_page); my_afree((byte*)new_page);
split_err: split_err:
my_afree((byte*)coord_buf); my_free((gptr) coord_buf, MYF(0));
return err_code; return err_code;
} }
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