| Index: src/platform-win32.cc
|
| diff --git a/src/platform-win32.cc b/src/platform-win32.cc
|
| index 03fb8b6491aad3d0bc9aba4f4e62c3b7395e9330..cbd7148ff40a72e9a48a4234491696ac9e5e2b2c 100644
|
| --- a/src/platform-win32.cc
|
| +++ b/src/platform-win32.cc
|
| @@ -766,10 +766,7 @@ void* OS::Allocate(const size_t requested,
|
| MEM_COMMIT | MEM_RESERVE,
|
| prot);
|
|
|
| - if (mbase == NULL) {
|
| - LOG(Isolate::Current(), StringEvent("OS::Allocate", "VirtualAlloc failed"));
|
| - return NULL;
|
| - }
|
| + if (mbase == NULL) return NULL;
|
|
|
| ASSERT(IsAligned(reinterpret_cast<size_t>(mbase), OS::AllocateAlignment()));
|
|
|
|
|