From 24c1be5cff94d6d92d78a11c6584deb7047b4ab6 Mon Sep 17 00:00:00 2001 From: Hugo Landau Date: Mon, 21 Nov 2022 09:55:30 +0000 Subject: QUIC TXP: Correct an issue with an uninitialized variable Reviewed-by: Tomas Mraz Reviewed-by: Matt Caswell (Merged from https://github.com/openssl/openssl/pull/19703) --- ssl/quic/quic_txp.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'ssl/quic/quic_txp.c') 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) { -- cgit v1.2.3