1
1

Cast size_t to DWORD on Windows

Este cometimento está contido em:
Thom Wiggers 2019-02-27 17:06:27 +01:00
ascendente 06955dfc21
cometimento ea19211d21
Não foi encontrada uma chave conhecida para esta assinatura, na base de dados
ID da chave GPG: 001BB0A7CE26E363

Ver ficheiro

@ -90,7 +90,7 @@ static int randombytes_win32_randombytes(void *buf, const size_t n) {
return -1;
}
tmp = CryptGenRandom(ctx, n, (BYTE *)buf);
tmp = CryptGenRandom(ctx, (DWORD)n, (BYTE *)buf);
if (tmp == FALSE) {
return -1;
}