Skip to content

Commit ca552cc

Browse files
committed
src/internal.c: work around false positive "C4701: potentially uninitialized local variable" in GrowOutputBuffer().
1 parent 279238c commit ca552cc

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/internal.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11192,7 +11192,7 @@ static WC_INLINE int GrowOutputBuffer(WOLFSSL* ssl, int size)
1119211192
#else
1119311193
const byte align = WOLFSSL_GENERAL_ALIGNMENT;
1119411194
#endif
11195-
word32 newSz;
11195+
word32 newSz = 0;
1119611196

1119711197
#if WOLFSSL_GENERAL_ALIGNMENT > 0
1119811198
/* the encrypted data will be offset from the front of the buffer by

0 commit comments

Comments
 (0)