diff --git a/src/coreclr/pal/tests/palsuite/filemapping_memmgt/VirtualProtect/test4/VirtualProtect.cpp b/src/coreclr/pal/tests/palsuite/filemapping_memmgt/VirtualProtect/test4/VirtualProtect.cpp index 0dbc9accbc3425a76129ea68a9747dc8e32b0c88..dc929a7a30b838283d4955e854f6dc3beb642534 100644 --- a/src/coreclr/pal/tests/palsuite/filemapping_memmgt/VirtualProtect/test4/VirtualProtect.cpp +++ b/src/coreclr/pal/tests/palsuite/filemapping_memmgt/VirtualProtect/test4/VirtualProtect.cpp @@ -31,7 +31,7 @@ PALTEST(filemapping_memmgt_VirtualProtect_test4_paltest_virtualprotect_test4, "f //Allocate the physical storage in memory or in the paging file on disk lpVirtualAddress = VirtualAlloc(NULL,//determine where to allocate the region REGIONSIZE, //specify the size - MEM_COMMIT, //allocation type + MEM_COMMIT | MEM_RESERVE_EXECUTABLE, //allocation type PAGE_READONLY); //access protection if(NULL == lpVirtualAddress) { diff --git a/src/coreclr/pal/tests/palsuite/issues.targets b/src/coreclr/pal/tests/palsuite/issues.targets index 2ed7e5b303bfca02a9767a57575070daf97ca9ae..dcfd971ddc74306fe7766f815adc762b472c2bd0 100644 --- a/src/coreclr/pal/tests/palsuite/issues.targets +++ b/src/coreclr/pal/tests/palsuite/issues.targets @@ -30,10 +30,4 @@ - - - - https://github.com/dotnet/runtime/issues/48783 - -