Skip to content

Commit

Permalink
QUIC: Fix nit
Browse files Browse the repository at this point in the history
Reviewed-by: Tomas Mraz <tomas@openssl.org>
Reviewed-by: Matt Caswell <matt@openssl.org>
(Merged from #21547)
  • Loading branch information
hlandau authored and mattcaswell committed Aug 8, 2023
1 parent 3989224 commit 828c9c6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ssl/quic/quic_rx_depack.c
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down

0 comments on commit 828c9c6

Please sign in to comment.