Commit 79c166c5 authored by Marko Mäkelä's avatar Marko Mäkelä

Fix cmake -DWITH_MSAN=ON

commit ab406990 accidentally
misplaced #endif directives.
parent ab406990
......@@ -425,8 +425,8 @@ void my_large_free(void *ptr, size_t size)
else
{
MEM_MAKE_ADDRESSABLE(ptr, size);
# endif
}
# endif
#elif defined(_WIN32)
/*
When RELEASE memory, the size parameter must be 0.
......@@ -441,8 +441,8 @@ void my_large_free(void *ptr, size_t size)
else
{
MEM_MAKE_ADDRESSABLE(ptr, size);
# endif
}
# endif
#else
my_free_lock(ptr);
#endif
......
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