diff options
author | thakis@chromium.org <thakis@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-05-02 20:47:47 +0000 |
---|---|---|
committer | thakis@chromium.org <thakis@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-05-02 20:47:47 +0000 |
commit | bfde7449259ccf84393fd6751fca30ea36eb0368 (patch) | |
tree | 3135f358d5eedda8038ad3e3d6e24107d171609e /sandbox/src/sandbox_nt_util.cc | |
parent | ac9952bd1cc3880f70a67d3582c9dd51506f4297 (diff) | |
download | chromium_src-bfde7449259ccf84393fd6751fca30ea36eb0368.zip chromium_src-bfde7449259ccf84393fd6751fca30ea36eb0368.tar.gz chromium_src-bfde7449259ccf84393fd6751fca30ea36eb0368.tar.bz2 |
win: Fix a few minor issues found by clang.
No intended functionality change.
BUG=82385
TEST=compiles
Review URL: http://codereview.chromium.org/10332002
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@134988 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'sandbox/src/sandbox_nt_util.cc')
-rw-r--r-- | sandbox/src/sandbox_nt_util.cc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sandbox/src/sandbox_nt_util.cc b/sandbox/src/sandbox_nt_util.cc index e730ddb..94a343a 100644 --- a/sandbox/src/sandbox_nt_util.cc +++ b/sandbox/src/sandbox_nt_util.cc @@ -1,4 +1,4 @@ -// Copyright (c) 2006-2010 The Chromium Authors. All rights reserved. +// Copyright (c) 2012 The Chromium Authors. All rights reserved. // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. @@ -538,7 +538,7 @@ void* operator new(size_t size, sandbox::AllocationType type, if (NT_ALLOC == type) { if (!InitHeap()) - return false; + return NULL; // Use default flags for the allocation. return g_nt.RtlAllocateHeap(sandbox::g_heap, 0, size); |