From: bmeurer@chromium.org Date: Mon, 29 Jul 2013 08:33:57 +0000 (+0000) Subject: Really fix break in r15919 now. X-Git-Tag: upstream/4.7.83~13173 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=312601266437963eb7834b7aab4d5e7140269c53;p=platform%2Fupstream%2Fv8.git Really fix break in r15919 now. TBR=svenpanne@chromium.org Review URL: https://codereview.chromium.org/21040002 git-svn-id: http://v8.googlecode.com/svn/branches/bleeding_edge@15921 ce2b1a6d-e550-0410-aec6-3dcde31c8c00 --- diff --git a/src/platform-win32.cc b/src/platform-win32.cc index 6e50c3e..292c24a 100644 --- a/src/platform-win32.cc +++ b/src/platform-win32.cc @@ -925,7 +925,7 @@ static void* RandomizedVirtualAlloc(size_t size, int action, int protection) { if (protection == PAGE_EXECUTE_READWRITE || protection == PAGE_NOACCESS) { // For exectutable pages try and randomize the allocation address for (size_t attempts = 0; base == NULL && attempts < 3; ++attempts) { - base = VirtualAlloc(OS::GetRandomAddr(), size, action, protection); + base = VirtualAlloc(OS::GetRandomMmapAddr(), size, action, protection); } }