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) |
| @@ -224,6 +224,10 @@ |
| } |
| SendRendererReply(fds, reply, result_fd); |
| + |
| + if (result_fd >= 0) { |
| + close(result_fd); |
|
jln (very slow on Chromium)
2013/03/18 16:07:21
Please, add HANDLE_EINTR + DCHECK
reed1
2013/03/18 16:56:07
Done.
|
| + } |
| } |
| void HandleGetFontFamilyForChars(int fd, const Pickle& pickle, |