| Index: net/http/http_response_info.cc
|
| diff --git a/net/http/http_response_info.cc b/net/http/http_response_info.cc
|
| index 57825e652e66c0a5031c79f91d65f95a43598d0d..dc6fd1ef03e71c9105544edd25a0439821800aa8 100644
|
| --- a/net/http/http_response_info.cc
|
| +++ b/net/http/http_response_info.cc
|
| @@ -183,7 +183,7 @@ bool HttpResponseInfo::InitFromPickle(const Pickle& pickle,
|
| if (flags & RESPONSE_INFO_HAS_CERT) {
|
| X509Certificate::PickleType type = GetPickleTypeForVersion(version);
|
| ssl_info.cert = X509Certificate::CreateFromPickle(pickle, &iter, type);
|
| - if (!ssl_info.cert)
|
| + if (!ssl_info.cert.get())
|
| return false;
|
| }
|
| if (flags & RESPONSE_INFO_HAS_CERT_STATUS) {
|
|
|