| Index: chrome/browser/net/preconnect.cc
|
| diff --git a/chrome/browser/net/preconnect.cc b/chrome/browser/net/preconnect.cc
|
| index 2c8097b0b20b2ff669ca17bbb047c1fd9a7c15b8..56342df51e20bcd4748afabc1755d085efdbda65 100644
|
| --- a/chrome/browser/net/preconnect.cc
|
| +++ b/chrome/browser/net/preconnect.cc
|
| @@ -94,8 +94,8 @@ void PreconnectOnIOThread(
|
| // Setup the SSL Configuration.
|
| net::SSLConfig ssl_config;
|
| session->ssl_config_service()->GetSSLConfig(&ssl_config);
|
| - if (session->http_stream_factory()->next_protos())
|
| - ssl_config.next_protos = *session->http_stream_factory()->next_protos();
|
| + if (session->http_stream_factory()->has_next_protos())
|
| + ssl_config.next_protos = session->http_stream_factory()->next_protos();
|
|
|
| // All preconnects should perform EV certificate verification.
|
| ssl_config.verify_ev_cert = true;
|
|
|