Fix typo in CPU RNG detection condition (Github issue #417)

This commit is contained in:
Mounir IDRASSI 2019-02-10 17:28:38 +01:00
parent 2bb1fdf232
commit 97ccbaf0a3
No known key found for this signature in database
GPG Key ID: 02C30AE90FAE4A6F
1 changed files with 1 additions and 1 deletions

View File

@ -1223,7 +1223,7 @@ static BOOL CpuRngDisabled = FALSE;
BOOL IsCpuRngSupport ()
{
if (HasRDSEED() || HasRDSEED())
if (HasRDSEED() || HasRDRAND())
return TRUE;
else
return FALSE;