Index: src/platform-win32.cc |
diff --git a/src/platform-win32.cc b/src/platform-win32.cc |
index e9e99246cb7924bbc7316aedf6701f8b88be96b6..783fd6c4654fdfad806b1b8de75171dcac7b6b36 100644 |
--- a/src/platform-win32.cc |
+++ b/src/platform-win32.cc |
@@ -885,7 +885,6 @@ void* OS::Allocate(const size_t requested, |
bool is_executable) { |
// VirtualAlloc rounds allocated size to page size automatically. |
size_t msize = RoundUp(requested, static_cast<int>(GetPageSize())); |
- void* address = 0; |
// Windows XP SP2 allows Data Excution Prevention (DEP). |
int prot = is_executable ? PAGE_EXECUTE_READWRITE : PAGE_READWRITE; |