From fab30f2aa08518ff7e38e5d993db9d2206551f24 Mon Sep 17 00:00:00 2001 From: Chris Lattner Date: Wed, 26 Jul 2006 20:37:11 +0000 Subject: [PATCH] Fix the build on win32 git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@29302 91177308-0d34-0410-b5e6-96231b3b80d8 --- lib/System/Win32/Memory.inc | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/lib/System/Win32/Memory.inc b/lib/System/Win32/Memory.inc index 9f5693a9aae..3b70cc8e4f1 100644 --- a/lib/System/Win32/Memory.inc +++ b/lib/System/Win32/Memory.inc @@ -47,9 +47,10 @@ MemoryBlock Memory::AllocateRWX(unsigned NumBytes, } bool Memory::ReleaseRWX(MemoryBlock &M, std::string *ErrMsg) { - if (M.Address == 0 || M.Size == 0) return; + if (M.Address == 0 || M.Size == 0) return false; if (!VirtualFree(M.Address, 0, MEM_RELEASE)) return GetError("Can't release RWX Memory: ", ErrMsg); + return false; } }