1
0
mirror of https://github.com/Mbed-TLS/mbedtls.git synced 2025-07-29 11:41:15 +03:00

Explicitly nullify grp->id instead of freeing.

This commit is contained in:
Alexander K
2019-08-16 16:10:34 +03:00
parent 1f5e6abfb9
commit 79a11fa0d6

View File

@ -836,6 +836,7 @@ int mbedtls_ecp_group_load( mbedtls_ecp_group *grp, mbedtls_ecp_group_id id )
#endif /* MBEDTLS_ECP_DP_CURVE448_ENABLED */
default:
grp->id = id;
return( MBEDTLS_ERR_ECP_FEATURE_UNAVAILABLE );
}
}