Commit dbe2663c authored by zhongyi's avatar zhongyi Committed by Commit bot

relnote: initialize client_common_set_hashes and

client_cached_cert_hashes to nullptr in default
QuicCompressedCertsCache::UncompressedCerts constructor.

BUG=716026

Review-Url: https://codereview.chromium.org/2848883006
Cr-Commit-Position: refs/heads/master@{#468220}
parent 3b653418
...@@ -19,7 +19,9 @@ inline void hash_combine(uint64_t* seed, const uint64_t& val) { ...@@ -19,7 +19,9 @@ inline void hash_combine(uint64_t* seed, const uint64_t& val) {
} // namespace } // namespace
QuicCompressedCertsCache::UncompressedCerts::UncompressedCerts() QuicCompressedCertsCache::UncompressedCerts::UncompressedCerts()
: chain(nullptr) {} : chain(nullptr),
client_common_set_hashes(nullptr),
client_cached_cert_hashes(nullptr) {}
QuicCompressedCertsCache::UncompressedCerts::UncompressedCerts( QuicCompressedCertsCache::UncompressedCerts::UncompressedCerts(
const QuicReferenceCountedPointer<ProofSource::Chain>& chain, const QuicReferenceCountedPointer<ProofSource::Chain>& chain,
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment