Skip to content

Commit 9b65bc2

Browse files
committed
fix uninitialized variable error
1 parent a344ba1 commit 9b65bc2

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
@@ -13432,7 +13432,7 @@ int TLSX_FinalizeEch(WOLFSSL_ECH* ech, byte* aad, word32 aadLen)
1343213432
int ret = 0;
1343313433
void* receiverPubkey = NULL;
1343413434
byte* info = NULL;
13435-
int infoLen;
13435+
int infoLen = 0;
1343613436
byte* aadCopy = NULL;
1343713437
/* setup hpke context to seal, should be done at most once per connection */
1343813438
if (ech->hpkeContext == NULL) {

0 commit comments

Comments
 (0)