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

Unified Diff: net/quic/crypto/source_address_token.cc

Issue 985383003: QUIC - Initialize SourceAddressToken's timestamp_ in the constructor (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 9 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/quic/crypto/source_address_token.cc
diff --git a/net/quic/crypto/source_address_token.cc b/net/quic/crypto/source_address_token.cc
index dcb7267e15c3c6cf736360532bf0571599b7375c..fbaeba1f5744338c93542aa0bca210f8d4637477 100644
--- a/net/quic/crypto/source_address_token.cc
+++ b/net/quic/crypto/source_address_token.cc
@@ -12,7 +12,7 @@ using std::string;
namespace net {
SourceAddressToken::SourceAddressToken()
- : has_cached_network_parameters_(false) {
+ : timestamp_(0), has_cached_network_parameters_(false) {
}
SourceAddressToken::~SourceAddressToken() {
« 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