mirror of
https://git.wownero.com/wownero/wownero.git
synced 2024-08-15 01:03:23 +00:00
random: call abort(3) instead of assert in must_succeed macro
Avoids silent use of bad RNG in release builds, in case those calls might actually fail. Reported by smooth.
This commit is contained in:
parent
1c66fe04bc
commit
31587bdd15
1 changed files with 1 additions and 1 deletions
|
@ -45,7 +45,7 @@ static void generate_system_random_bytes(size_t n, void *result);
|
|||
|
||||
static void generate_system_random_bytes(size_t n, void *result) {
|
||||
HCRYPTPROV prov;
|
||||
#define must_succeed(x) do if (!(x)) assert(0); while (0)
|
||||
#define must_succeed(x) do if (!(x)) abort(); while (0)
|
||||
must_succeed(CryptAcquireContext(&prov, NULL, NULL, PROV_RSA_FULL, CRYPT_VERIFYCONTEXT | CRYPT_SILENT));
|
||||
must_succeed(CryptGenRandom(prov, (DWORD)n, result));
|
||||
must_succeed(CryptReleaseContext(prov, 0));
|
||||
|
|
Loading…
Reference in a new issue