Index: net/spdy/spdy_protocol.cc |
diff --git a/net/spdy/spdy_protocol.cc b/net/spdy/spdy_protocol.cc |
index 6e2ddfa7e0422852ee282ab6e83856502b5cdec2..b9e458a8a83dd2f8d1beebd31ee551de196cf26e 100644 |
--- a/net/spdy/spdy_protocol.cc |
+++ b/net/spdy/spdy_protocol.cc |
@@ -12,12 +12,18 @@ SpdyFrameWithNameValueBlockIR::SpdyFrameWithNameValueBlockIR( |
SpdyFrameWithNameValueBlockIR::~SpdyFrameWithNameValueBlockIR() {} |
SpdyDataIR::SpdyDataIR(SpdyStreamId stream_id, const base::StringPiece& data) |
- : SpdyFrameWithFinIR(stream_id) { |
+ : SpdyFrameWithFinIR(stream_id), |
+ pad_low_(false), |
+ pad_high_(false), |
+ padding_payload_len_(0) { |
SetDataDeep(data); |
} |
SpdyDataIR::SpdyDataIR(SpdyStreamId stream_id) |
- : SpdyFrameWithFinIR(stream_id) {} |
+ : SpdyFrameWithFinIR(stream_id), |
+ pad_low_(false), |
+ pad_high_(false), |
+ padding_payload_len_(0) {} |
SpdyDataIR::~SpdyDataIR() {} |