Index: sandbox/linux/syscall_broker/broker_client.cc |
diff --git a/sandbox/linux/syscall_broker/broker_client.cc b/sandbox/linux/syscall_broker/broker_client.cc |
index b82ecb32dc40f1672abd72c326a0d9b2cd5a8bbb..8d04197160a9accdb67c84f2f132811ace873d17 100644 |
--- a/sandbox/linux/syscall_broker/broker_client.cc |
+++ b/sandbox/linux/syscall_broker/broker_client.cc |
@@ -92,7 +92,7 @@ int BrokerClient::PathAndFlagsSyscall(IPCCommand syscall_type, |
int return_value = -1; |
// Now deserialize the return value and eventually return the file |
// descriptor. |
- if (read_pickle.ReadInt(&iter, &return_value)) { |
+ if (iter.ReadInt(&return_value)) { |
switch (syscall_type) { |
case COMMAND_ACCESS: |
// We should never have a fd to return. |