Fix MSVC error C4703 about possibly uninitialized variable in pkwrite.c

Signed-off-by: correy <112426112@qq.com>
This commit is contained in:
correy 2023-09-21 16:19:11 +08:00
parent 5edb942708
commit a15b4851d4

View file

@ -379,7 +379,7 @@ int mbedtls_pk_write_pubkey_der(const mbedtls_pk_context *key, unsigned char *bu
#if defined(MBEDTLS_PK_HAVE_ECC_KEYS)
mbedtls_ecp_group_id ec_grp_id = MBEDTLS_ECP_DP_NONE;
#endif
const char *oid;
const char *oid = NULL;
if (size == 0) {
return MBEDTLS_ERR_ASN1_BUF_TOO_SMALL;