Chromium Code Reviews| Index: content/browser/renderer_host/render_sandbox_host_linux.cc |
| =================================================================== |
| --- content/browser/renderer_host/render_sandbox_host_linux.cc (revision 188729) |
| +++ content/browser/renderer_host/render_sandbox_host_linux.cc (working copy) |
| @@ -223,7 +223,13 @@ |
| reply.WriteBool(true); |
| } |
| + // The receiver will have its own access to the file, so we will close it |
| + // after this send. |
| SendRendererReply(fds, reply, result_fd); |
| + |
| + if (result_fd >= 0) { |
| + DCHECK(!HANDLE_EINTR(close(result_fd))); |
|
jln (very slow on Chromium)
2013/03/19 10:23:27
We missed moving this out of DCHECK. And it's argu
|
| + } |
| } |
| void HandleGetFontFamilyForChars(int fd, const Pickle& pickle, |