Commit 264cfbb0 authored by Marko Mäkelä's avatar Marko Mäkelä

fsp_init_file_page_low(): Zero out the page. (Bug #53306)

parent 5f0ff946
......@@ -869,12 +869,10 @@ fsp_init_file_page_low(
return;
}
UNIV_MEM_INVALID(page, UNIV_PAGE_SIZE);
memset(page, 0, UNIV_PAGE_SIZE);
mach_write_to_4(page + FIL_PAGE_OFFSET, buf_block_get_page_no(block));
memset(page + FIL_PAGE_LSN, 0, 8);
mach_write_to_4(page + FIL_PAGE_ARCH_LOG_NO_OR_SPACE_ID,
buf_block_get_space(block));
memset(page + UNIV_PAGE_SIZE - FIL_PAGE_END_LSN_OLD_CHKSUM, 0, 8);
}
#ifndef UNIV_HOTBACKUP
......
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