Index: net/quic/congestion_control/leaky_bucket.cc |
diff --git a/net/quic/congestion_control/leaky_bucket.cc b/net/quic/congestion_control/leaky_bucket.cc |
index d3dd5139d1f7d65d9c0e6fd707c47406a24de290..60ec7a605f70e6581cecc5583d6c9b6c3e161539 100644 |
--- a/net/quic/congestion_control/leaky_bucket.cc |
+++ b/net/quic/congestion_control/leaky_bucket.cc |
@@ -11,6 +11,7 @@ namespace net { |
LeakyBucket::LeakyBucket(const QuicClock* clock, int bytes_per_second) |
: clock_(clock), |
bytes_(0), |
+ time_last_updated_(QuicTime::Zero()), |
draining_rate_bytes_per_s_(bytes_per_second) { |
} |