summaryrefslogtreecommitdiffstats
path: root/ssl/quic/quic_txp.c
diff options
context:
space:
mode:
authorHugo Landau <hlandau@openssl.org>2022-11-21 09:55:30 +0000
committerHugo Landau <hlandau@openssl.org>2023-01-13 13:20:17 +0000
commit24c1be5cff94d6d92d78a11c6584deb7047b4ab6 (patch)
treefaaf284a8f21ad1687e18ea9a1d0183b53abe23c /ssl/quic/quic_txp.c
parentd1ac77b1a50b070aa55384f4c5eff3df71adb2c7 (diff)
QUIC TXP: Correct an issue with an uninitialized variable
Reviewed-by: Tomas Mraz <tomas@openssl.org> Reviewed-by: Matt Caswell <matt@openssl.org> (Merged from https://github.com/openssl/openssl/pull/19703)
Diffstat (limited to 'ssl/quic/quic_txp.c')
-rw-r--r--ssl/quic/quic_txp.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/ssl/quic/quic_txp.c b/ssl/quic/quic_txp.c
index 1042c69f44..6ebe2283ad 100644
--- a/ssl/quic/quic_txp.c
+++ b/ssl/quic/quic_txp.c
@@ -1253,7 +1253,7 @@ static int txp_generate_crypto_frames(OSSL_QUIC_TX_PACKETISER *txp,
OSSL_QTX_IOVEC iov[2];
uint64_t hdr_bytes;
WPACKET *wpkt;
- QUIC_TXPIM_CHUNK chunk;
+ QUIC_TXPIM_CHUNK chunk = {0};
size_t i, space_left;
for (i = 0;; ++i) {