From: Hugo Landau Date: Mon, 21 Nov 2022 09:55:30 +0000 (+0000) Subject: QUIC TXP: Correct an issue with an uninitialized variable X-Git-Tag: openssl-3.2.0-alpha1~1489 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=24c1be5cff94d6d92d78a11c6584deb7047b4ab6;p=thirdparty%2Fopenssl.git 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) --- diff --git a/ssl/quic/quic_txp.c b/ssl/quic/quic_txp.c index 1042c69f447..6ebe2283ade 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) {