Index: net/quic/crypto/quic_crypto_client_config.cc |
diff --git a/net/quic/crypto/quic_crypto_client_config.cc b/net/quic/crypto/quic_crypto_client_config.cc |
index 9d5e704e1df9cc00bafcf6ca983d93aa60590768..b37befea03e661e50600e9ec3b5b2136cac00d8d 100644 |
--- a/net/quic/crypto/quic_crypto_client_config.cc |
+++ b/net/quic/crypto/quic_crypto_client_config.cc |
@@ -587,8 +587,9 @@ QuicErrorCode QuicCryptoClientConfig::ProcessRejection( |
} |
} |
- const QuicTag* reject_reasons; |
+ const uint32* reject_reasons; |
size_t num_reject_reasons; |
+ COMPILE_ASSERT(sizeof(QuicTag) == sizeof(uint32), header_out_of_sync); |
if (rej.GetTaglist(kRREJ, &reject_reasons, |
&num_reject_reasons) == QUIC_NO_ERROR) { |
#if defined(DEBUG) |