Index: sandbox/win/src/sandbox_nt_util.cc |
=================================================================== |
--- sandbox/win/src/sandbox_nt_util.cc (revision 157289) |
+++ sandbox/win/src/sandbox_nt_util.cc (working copy) |
@@ -13,7 +13,7 @@ |
// This is the list of all imported symbols from ntdll.dll. |
SANDBOX_INTERCEPT NtExports g_nt = { NULL }; |
-} |
+} // namespace |
namespace { |
@@ -166,7 +166,7 @@ |
g_nt.RtlDestroyHeap(heap); |
} |
} |
- return (g_heap) ? true : false; |
+ return (g_heap != NULL); |
} |
// Physically reads or writes from memory to verify that (at this time), it is |