pmm: Keep first page on sanitiser call in get_raw_memmap()

This commit is contained in:
mintsuki 2022-09-26 02:42:32 +02:00
parent 97c928a354
commit bd7c3602bb
1 changed files with 3 additions and 0 deletions

View File

@ -573,7 +573,10 @@ struct memmap_entry *get_raw_memmap(size_t *entry_count) {
mmap[i].type = our_type;
}
bool old_skfp = sanitiser_keep_first_page;
sanitiser_keep_first_page = true;
sanitise_entries(mmap, &mmap_count, false);
sanitiser_keep_first_page = old_skfp;
*entry_count = mmap_count;
return mmap;