wolfcrypt/src/asn.c: fix a maybe-uninitialized found by clang --enable-asn=template.

This commit is contained in:
Daniel Pouzzner 2023-01-24 14:00:22 -06:00
parent 5e6005a1a3
commit b2c751a9ca

View File

@ -29102,7 +29102,7 @@ static int MakeCertReq(Cert* cert, byte* derBuffer, word32 derSz,
int sz = 0;
int ret = 0;
#if defined(WOLFSSL_CERT_EXT) || defined(OPENSSL_EXTRA)
word32 sbjRawSz;
word32 sbjRawSz = 0;
#endif
/* Unused without OQS */