forked from wolfSSL/wolfssl
wolfcrypt/src/asn.c: fix a maybe-uninitialized found by clang --enable-asn=template.
This commit is contained in:
@ -29102,7 +29102,7 @@ static int MakeCertReq(Cert* cert, byte* derBuffer, word32 derSz,
|
|||||||
int sz = 0;
|
int sz = 0;
|
||||||
int ret = 0;
|
int ret = 0;
|
||||||
#if defined(WOLFSSL_CERT_EXT) || defined(OPENSSL_EXTRA)
|
#if defined(WOLFSSL_CERT_EXT) || defined(OPENSSL_EXTRA)
|
||||||
word32 sbjRawSz;
|
word32 sbjRawSz = 0;
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
/* Unused without OQS */
|
/* Unused without OQS */
|
||||||
|
Reference in New Issue
Block a user