| Index: content/common/sandbox_linux.cc
|
| diff --git a/content/common/sandbox_linux.cc b/content/common/sandbox_linux.cc
|
| index b9cfe0e2fb9ab9b4d42d4712f79cbce2a7a26746..85a3e3646d615239920af670a4a5fada09163305 100644
|
| --- a/content/common/sandbox_linux.cc
|
| +++ b/content/common/sandbox_linux.cc
|
| @@ -289,7 +289,7 @@ bool LinuxSandbox::HasOpenDirectories() {
|
|
|
| void LinuxSandbox::SealSandbox() {
|
| if (proc_fd_ >= 0) {
|
| - int ret = HANDLE_EINTR(close(proc_fd_));
|
| + int ret = IGNORE_EINTR(close(proc_fd_));
|
| CHECK_EQ(0, ret);
|
| proc_fd_ = -1;
|
| }
|
|
|