| Index: base/posix/file_descriptor_shuffle.cc
|
| diff --git a/base/posix/file_descriptor_shuffle.cc b/base/posix/file_descriptor_shuffle.cc
|
| index b5b7339bdfa34a6b78119cab52acf896bf6631b5..7bc9e26eb5825879fe5aa2eddd3ec991c91a0dd2 100644
|
| --- a/base/posix/file_descriptor_shuffle.cc
|
| +++ b/base/posix/file_descriptor_shuffle.cc
|
| @@ -89,7 +89,7 @@ bool FileDescriptorTableInjection::Move(int src, int dest) {
|
| }
|
|
|
| void FileDescriptorTableInjection::Close(int fd) {
|
| - int ret = HANDLE_EINTR(close(fd));
|
| + int ret = IGNORE_EINTR(close(fd));
|
| DPCHECK(ret == 0);
|
| }
|
|
|
|
|