1
0
mirror of https://github.com/MariaDB/server.git synced 2025-07-30 16:24:05 +03:00

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

This commit is contained in:
ram@mysql.r18.ru
2003-04-01 15:33:09 +05:00
parent 0002beb7a4
commit d5030a0541

View File

@ -340,6 +340,6 @@ int rtree_split_page(MI_INFO *info, MI_KEYDEF *keyinfo, uchar *page, uchar *key,
my_afree((byte*)new_page);
split_err:
my_afree((byte*)coord_buf);
my_free((gptr) coord_buf, MYF(0));
return err_code;
}