| Index: chrome_elf/blacklist/blacklist_interceptions.cc
|
| diff --git a/chrome_elf/blacklist/blacklist_interceptions.cc b/chrome_elf/blacklist/blacklist_interceptions.cc
|
| index 2163446ddf4246d09b6ea9d96b7f6c40622e56bd..642a8b4347004fc2c9801a2862bc8b4ff136c768 100644
|
| --- a/chrome_elf/blacklist/blacklist_interceptions.cc
|
| +++ b/chrome_elf/blacklist/blacklist_interceptions.cc
|
| @@ -229,4 +229,14 @@ SANDBOX_INTERCEPT NTSTATUS WINAPI BlNtMapViewOfSection(
|
| return ret;
|
| }
|
|
|
| +#if defined(_WIN64)
|
| +NTSTATUS WINAPI BlNtMapViewOfSection64(
|
| + HANDLE section, HANDLE process, PVOID *base, ULONG_PTR zero_bits,
|
| + SIZE_T commit_size, PLARGE_INTEGER offset, PSIZE_T view_size,
|
| + SECTION_INHERIT inherit, ULONG allocation_type, ULONG protect) {
|
| + return BlNtMapViewOfSection(g_nt_map_view_of_section_func, section, process,
|
| + base, zero_bits, commit_size, offset, view_size,
|
| + inherit, allocation_type, protect);
|
| +}
|
| +#endif
|
| } // namespace blacklist
|
|
|