diff options
Diffstat (limited to 'ipc/ipc_send_fds_test.cc')
-rw-r--r-- | ipc/ipc_send_fds_test.cc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/ipc/ipc_send_fds_test.cc b/ipc/ipc_send_fds_test.cc index 3b845f8..124a3dc 100644 --- a/ipc/ipc_send_fds_test.cc +++ b/ipc/ipc_send_fds_test.cc @@ -1,4 +1,4 @@ -// Copyright (c) 2009 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. @@ -52,7 +52,7 @@ class MyChannelDescriptorListener : public IPC::Channel::Listener { num_fds_received_(0) {} virtual bool OnMessageReceived(const IPC::Message& message) { - void* iter = NULL; + PickleIterator iter(message); ++num_fds_received_; base::FileDescriptor descriptor; |