Commit f3f23b5c authored by Marko Mäkelä's avatar Marko Mäkelä

One more ASAN/MSAN cleanup

commit 48493132 included a
workaround for a 10.5 merge issue that should now be properly
addressed in commit ab406990.

buf_chunk_init(): Remove an unnecessary MEM_MAKE_ADDRESSABLE().
We might invoke MEM_UNDEFINED() here, but actually the allocated
memory ought to be guaranteed to be zero-initialized.
parent 453dc4b3
......@@ -1622,8 +1622,6 @@ buf_chunk_init(
return(NULL);
}
MEM_MAKE_ADDRESSABLE(chunk->mem, chunk->mem_size());
#ifdef HAVE_LIBNUMA
if (srv_numa_interleave) {
struct bitmask *numa_mems_allowed = numa_get_mems_allowed();
......
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