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

Unified Diff: net/quic/quic_config.cc

Issue 1008473003: QUIC - Initialize QuicConfig's negotiated_value_ to 0. IMO, it is not (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@Create_QUIC_connection_option_88045604
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/quic_config.cc
diff --git a/net/quic/quic_config.cc b/net/quic/quic_config.cc
index 07445ee51c067cb259d36326f1837383bcb4adcf..3bdf26a36816f0ab9309f290b707457248f1208d 100644
--- a/net/quic/quic_config.cc
+++ b/net/quic/quic_config.cc
@@ -64,7 +64,8 @@ QuicNegotiableUint32::QuicNegotiableUint32(QuicTag tag,
QuicConfigPresence presence)
: QuicNegotiableValue(tag, presence),
max_value_(0),
- default_value_(0) {
+ default_value_(0),
+ negotiated_value_(0) {
}
QuicNegotiableUint32::~QuicNegotiableUint32() {}
« 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