1
0
mirror of https://github.com/Mbed-TLS/mbedtls.git synced 2025-07-30 22:43:08 +03:00

Fix a warning (theoretical uninitialised variable)

This commit is contained in:
Manuel Pégourié-Gonnard
2014-03-27 14:59:42 +01:00
parent 1827a6e77e
commit 5b8c409f53

View File

@ -355,7 +355,7 @@ static int pk_group_from_specified( const asn1_buf *params, ecp_group *grp )
*/
static int pk_group_id_from_group( const ecp_group *grp, ecp_group_id *grp_id )
{
int ret;
int ret = 0;
ecp_group ref;
const ecp_group_id *id;