| Index: mojo/common/data_pipe_utils.cc
|
| diff --git a/mojo/common/data_pipe_utils.cc b/mojo/common/data_pipe_utils.cc
|
| index 428a5897b05074ebcae62029659adbace64314c7..c99c6668ba46a1d112724e3246821913cdff0377 100644
|
| --- a/mojo/common/data_pipe_utils.cc
|
| +++ b/mojo/common/data_pipe_utils.cc
|
| @@ -31,7 +31,8 @@ bool BlockingCopyHelper(ScopedDataPipeConsumerHandle source,
|
| } else if (result == MOJO_RESULT_SHOULD_WAIT) {
|
| result = Wait(source.get(),
|
| MOJO_HANDLE_SIGNAL_READABLE,
|
| - MOJO_DEADLINE_INDEFINITE);
|
| + MOJO_DEADLINE_INDEFINITE,
|
| + nullptr);
|
| if (result != MOJO_RESULT_OK) {
|
| // If the producer handle was closed, then treat as EOF.
|
| return result == MOJO_RESULT_FAILED_PRECONDITION;
|
|
|