From 242dcb0141e7885e2780d232c997fc2a832bb66a Mon Sep 17 00:00:00 2001 From: Anthony Hu Date: Mon, 30 Jan 2023 13:45:03 -0500 Subject: [PATCH] Closing and opening scope around case statement. Related: ZD 15451 --- src/tls13.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/tls13.c b/src/tls13.c index 82d94f9e4..be09e0407 100644 --- a/src/tls13.c +++ b/src/tls13.c @@ -4379,10 +4379,12 @@ int SendTls13ClientHello(WOLFSSL* ssl) /* Advance state and proceed */ ssl->options.asyncState = TLS_ASYNC_END; + } /* case TLS_ASYNC_BUILD */ FALL_THROUGH; case TLS_ASYNC_END: + { #ifdef WOLFSSL_EARLY_DATA_GROUP /* QUIC needs to forward records at their encryption level * and is therefore unable to group here */