mirror of
https://github.com/yuzu-emu/mbedtls.git
synced 2025-02-02 19:01:09 +00:00
Fixed memory leak due to typo
This commit is contained in:
parent
de532ee73f
commit
b4ab8a8137
|
@ -266,8 +266,8 @@ static int ecp_double_generic( const ecp_group *grp, ecp_point *R,
|
||||||
|
|
||||||
cleanup:
|
cleanup:
|
||||||
|
|
||||||
mpi_free( &LN ); mpi_init( &LD ); mpi_init( &K ); mpi_init( &L );
|
mpi_free( &LN ); mpi_free( &LD ); mpi_free( &K ); mpi_free( &L );
|
||||||
mpi_free( &LL ); mpi_init( &X ); mpi_init( &Y );
|
mpi_free( &LL ); mpi_free( &X ); mpi_free( &Y );
|
||||||
|
|
||||||
return( ret );
|
return( ret );
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue