Repository: trafficserver Updated Branches: refs/heads/6.0.x a248e11c0 -> 16169389c
TS-3846: CID 1316404: Uninitialized members in HTTP2.h This closes #278 (cherry picked from commit 87b8e5f817750e99051fe07ead254d74d09f6c71) Project: http://git-wip-us.apache.org/repos/asf/trafficserver/repo Commit: http://git-wip-us.apache.org/repos/asf/trafficserver/commit/16169389 Tree: http://git-wip-us.apache.org/repos/asf/trafficserver/tree/16169389 Diff: http://git-wip-us.apache.org/repos/asf/trafficserver/diff/16169389 Branch: refs/heads/6.0.x Commit: 16169389ceba50847f44b1869bd42e4cc8892c45 Parents: a248e11 Author: Masakazu Kitajo <[email protected]> Authored: Mon Aug 17 12:37:15 2015 -0700 Committer: Bryan Call <[email protected]> Committed: Tue Aug 25 13:22:58 2015 -0700 ---------------------------------------------------------------------- proxy/http2/HTTP2.h | 2 ++ 1 file changed, 2 insertions(+) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/trafficserver/blob/16169389/proxy/http2/HTTP2.h ---------------------------------------------------------------------- diff --git a/proxy/http2/HTTP2.h b/proxy/http2/HTTP2.h index 29f31fe..5418b9c 100644 --- a/proxy/http2/HTTP2.h +++ b/proxy/http2/HTTP2.h @@ -243,6 +243,8 @@ struct Http2SettingsParameter { // 6.3 PRIORITY struct Http2Priority { + Http2Priority() : stream_dependency(0), weight(15) {} + uint32_t stream_dependency; uint8_t weight; };
