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

Unified Diff: net/socket/ssl_client_socket_pool.cc

Issue 6355003: net: don't assume that we have an SSLHostInfo. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 9 years, 11 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 | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: net/socket/ssl_client_socket_pool.cc
diff --git a/net/socket/ssl_client_socket_pool.cc b/net/socket/ssl_client_socket_pool.cc
index 12d9e19558067e0a61ccecae1a5aa647df5c1537..b8ffca8b88170f0dc56a3f4a63dfbc18e57912bf 100644
--- a/net/socket/ssl_client_socket_pool.cc
+++ b/net/socket/ssl_client_socket_pool.cc
@@ -202,10 +202,10 @@ int SSLConnectJob::DoTCPConnect() {
params_->ssl_config()));
}
- if (dnsrr_resolver_)
- ssl_host_info_->StartDnsLookup(dnsrr_resolver_);
-
if (ssl_host_info_.get()) {
+ if (dnsrr_resolver_)
+ ssl_host_info_->StartDnsLookup(dnsrr_resolver_);
+
// This starts fetching the SSL host info from the disk cache for Snap
// Start.
ssl_host_info_->Start();
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698