mirror of
https://github.com/Mbed-TLS/mbedtls.git
synced 2025-04-03 19:20:18 +00:00
Fix handle leak in mbedtls_platform_entropy_poll() on Windows on error
This commit is contained in:
parent
bdae02ce90
commit
d19ea90f11
@ -61,7 +61,10 @@ int mbedtls_platform_entropy_poll( void *data, unsigned char *output, size_t len
|
|||||||
}
|
}
|
||||||
|
|
||||||
if( CryptGenRandom( provider, (DWORD) len, output ) == FALSE )
|
if( CryptGenRandom( provider, (DWORD) len, output ) == FALSE )
|
||||||
|
{
|
||||||
|
CryptReleaseContext( provider, 0 );
|
||||||
return( MBEDTLS_ERR_ENTROPY_SOURCE_FAILED );
|
return( MBEDTLS_ERR_ENTROPY_SOURCE_FAILED );
|
||||||
|
}
|
||||||
|
|
||||||
CryptReleaseContext( provider, 0 );
|
CryptReleaseContext( provider, 0 );
|
||||||
*olen = len;
|
*olen = len;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user