diff options
Diffstat (limited to 'ipc')
-rw-r--r-- | ipc/ipc_channel_posix.cc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/ipc/ipc_channel_posix.cc b/ipc/ipc_channel_posix.cc index d44c008..069869f 100644 --- a/ipc/ipc_channel_posix.cc +++ b/ipc/ipc_channel_posix.cc @@ -1,4 +1,4 @@ -// Copyright (c) 2011 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. @@ -968,7 +968,7 @@ bool Channel::ChannelImpl::GetClientEuid(uid_t* client_euid) const { PLOG(ERROR) << "getsockopt " << pipe_; return false; } - if (cred_len < sizeof(cred)) { + if (static_cast<unsigned>(cred_len) < sizeof(cred)) { NOTREACHED() << "Truncated ucred from SO_PEERCRED?"; return false; } |