From ca552cc345f16d3c29a63b89db05ff8f25eaf99c Mon Sep 17 00:00:00 2001 From: Daniel Pouzzner Date: Mon, 20 Oct 2025 23:54:15 -0500 Subject: [PATCH] src/internal.c: work around false positive "C4701: potentially uninitialized local variable" in GrowOutputBuffer(). --- src/internal.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/internal.c b/src/internal.c index 0f77fb2d3..cfd29f80a 100644 --- a/src/internal.c +++ b/src/internal.c @@ -11192,7 +11192,7 @@ static WC_INLINE int GrowOutputBuffer(WOLFSSL* ssl, int size) #else const byte align = WOLFSSL_GENERAL_ALIGNMENT; #endif - word32 newSz; + word32 newSz = 0; #if WOLFSSL_GENERAL_ALIGNMENT > 0 /* the encrypted data will be offset from the front of the buffer by