summaryrefslogtreecommitdiffstats
path: root/chrome/common
diff options
context:
space:
mode:
Diffstat (limited to 'chrome/common')
-rw-r--r--chrome/common/ipc_channel_win.cc3
1 files changed, 3 insertions, 0 deletions
diff --git a/chrome/common/ipc_channel_win.cc b/chrome/common/ipc_channel_win.cc
index 2e287ce..9d1de29 100644
--- a/chrome/common/ipc_channel_win.cc
+++ b/chrome/common/ipc_channel_win.cc
@@ -225,6 +225,9 @@ bool Channel::ChannelImpl::ProcessConnection() {
case ERROR_PIPE_CONNECTED:
waiting_connect_ = false;
break;
+ case ERROR_NO_DATA:
+ // The pipe is being closed.
+ return false;
default:
NOTREACHED();
return false;