Commit 04477bd9 authored by Vladislav Vaintroub's avatar Vladislav Vaintroub

MDEV-28836 fix crashing PFS unit tests on Windows.

In stub_pfs_global, use aligned_free() for pfs_free(), to match
aligned_malloc() in pfs_malloc()
parent b52b7b41
...@@ -58,7 +58,7 @@ void *pfs_malloc(PFS_builtin_memory_class *klass, size_t size, myf) ...@@ -58,7 +58,7 @@ void *pfs_malloc(PFS_builtin_memory_class *klass, size_t size, myf)
void pfs_free(PFS_builtin_memory_class *, size_t, void *ptr) void pfs_free(PFS_builtin_memory_class *, size_t, void *ptr)
{ {
if (ptr != NULL) if (ptr != NULL)
free(ptr); aligned_free(ptr);
} }
void *pfs_malloc_array(PFS_builtin_memory_class *klass, size_t n, size_t size, myf flags) void *pfs_malloc_array(PFS_builtin_memory_class *klass, size_t n, size_t size, myf flags)
......
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