From: Chris Lattner Date: Wed, 26 Jul 2006 20:37:11 +0000 (+0000) Subject: Fix the build on win32 X-Git-Url: http://plrg.eecs.uci.edu/git/?a=commitdiff_plain;h=fab30f2aa08518ff7e38e5d993db9d2206551f24;p=oota-llvm.git Fix the build on win32 git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@29302 91177308-0d34-0410-b5e6-96231b3b80d8 --- 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; } }