Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(7702)

Unified Diff: chrome/browser/sync/tools/chrome_async_socket.cc

Issue 2966011: Fixed some minor bugs with ChromeAsyncSocket. (Closed)
Patch Set: Created 10 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | chrome/browser/sync/tools/chrome_async_socket_unittest.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/sync/tools/chrome_async_socket.cc
diff --git a/chrome/browser/sync/tools/chrome_async_socket.cc b/chrome/browser/sync/tools/chrome_async_socket.cc
index 52952db3c1b37cdc90fcd9359ffba674e1f63cb9..e5d662fc8f899d5d9643cf343fd36b74b427de3e 100644
--- a/chrome/browser/sync/tools/chrome_async_socket.cc
+++ b/chrome/browser/sync/tools/chrome_async_socket.cc
@@ -249,7 +249,14 @@ void ChromeAsyncSocket::ProcessReadDone(int status) {
bool ChromeAsyncSocket::Read(char* data, size_t len, size_t* len_read) {
if (!IsOpen() && (state_ != STATE_TLS_CONNECTING)) {
- LOG(DFATAL) << "Read() called on non-open non-tls-connecting socket";
+ // Read() may be called on a closed socket if a previous read
+ // causes a socket close (e.g., client sends wrong password and
+ // server terminates connection).
+ //
+ // TODO(akalin): Fix handling of this on the libjingle side.
+ if (state_ != STATE_CLOSED) {
+ LOG(DFATAL) << "Read() called on non-open non-tls-connecting socket";
+ }
DoNonNetError(ERROR_WRONGSTATE);
return false;
}
@@ -457,6 +464,7 @@ void ChromeAsyncSocket::ProcessSSLConnectDone(int status) {
DCHECK_EQ(write_state_, IDLE);
if (status != net::OK) {
DoNetErrorFromStatus(status);
+ DoClose();
return;
}
state_ = STATE_TLS_OPEN;
« no previous file with comments | « no previous file | chrome/browser/sync/tools/chrome_async_socket_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698