| Index: net/quic/quic_protocol.cc
|
| diff --git a/net/quic/quic_protocol.cc b/net/quic/quic_protocol.cc
|
| index 5aa831e48c1be97ca502580a3b844cd835109544..b631b07a22ec4ae6450ad43174dbef1840e36bc8 100644
|
| --- a/net/quic/quic_protocol.cc
|
| +++ b/net/quic/quic_protocol.cc
|
| @@ -704,7 +704,8 @@ TransmissionInfo::TransmissionInfo()
|
| transmission_type(NOT_RETRANSMISSION),
|
| all_transmissions(nullptr),
|
| in_flight(false),
|
| - is_unackable(false) {}
|
| + is_unackable(false),
|
| + is_fec_packet(false) {}
|
|
|
| TransmissionInfo::TransmissionInfo(
|
| RetransmittableFrames* retransmittable_frames,
|
| @@ -719,6 +720,7 @@ TransmissionInfo::TransmissionInfo(
|
| transmission_type(transmission_type),
|
| all_transmissions(nullptr),
|
| in_flight(false),
|
| - is_unackable(false) {}
|
| + is_unackable(false),
|
| + is_fec_packet(false) {}
|
|
|
| } // namespace net
|
|
|