Skip to content

Commit 502fd84

Browse files
authored
Merge pull request #5897 from gojimmypi/gojimmypi-initialize-resp_length
initialize resp_length = 0 in tls.c
2 parents 4434d89 + e0c9586 commit 502fd84

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/tls.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3054,7 +3054,7 @@ static int TLSX_CSR_Parse(WOLFSSL* ssl, const byte* input, word16 length,
30543054
#endif
30553055

30563056
#if !defined(NO_WOLFSSL_CLIENT) && defined(WOLFSSL_TLS13)
3057-
word32 resp_length;
3057+
word32 resp_length = 0;
30583058
#endif
30593059

30603060
/* shut up compiler warnings */

0 commit comments

Comments
 (0)