From: Hugo Landau Date: Wed, 2 Aug 2023 19:35:25 +0000 (+0100) Subject: QUIC: Fix nit X-Git-Tag: openssl-3.2.0-alpha1~272 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=828c9c6690dc2791cee7873cf6793db187b558bb;p=thirdparty%2Fopenssl.git QUIC: Fix nit Reviewed-by: Tomas Mraz Reviewed-by: Matt Caswell (Merged from https://github.com/openssl/openssl/pull/21547) --- diff --git a/ssl/quic/quic_rx_depack.c b/ssl/quic/quic_rx_depack.c index d1e166e062c..9e10a0a0324 100644 --- a/ssl/quic/quic_rx_depack.c +++ b/ssl/quic/quic_rx_depack.c @@ -921,7 +921,7 @@ static int depack_do_frame_path_challenge(PACKET *pkt, * respond by echoing the data contained in the PATH_CHALLENGE frame in a * PATH_RESPONSE frame. * - * TODO(QUIC): We should try to avoid allocation here in the future. + * TODO(QUIC FUTURE): We should try to avoid allocation here in the future. */ encoded_len = sizeof(uint64_t) + 1; if ((encoded = OPENSSL_malloc(encoded_len)) == NULL)