We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 323f96f commit c8d1dcbCopy full SHA for c8d1dcb
deps/ncrypto/ncrypto.cc
@@ -346,7 +346,7 @@ bool BignumPointer::generate(const PrimeConfig& params,
346
PrimeCheckCallback innerCb) const {
347
// BN_generate_prime_ex() calls RAND_bytes_ex() internally.
348
// Make sure the CSPRNG is properly seeded.
349
- CSPRNG(nullptr, 0);
+ std::ignore = CSPRNG(nullptr, 0);
350
BignumGenCallbackPointer cb(nullptr);
351
if (innerCb != nullptr) {
352
cb = BignumGenCallbackPointer(BN_GENCB_new());
0 commit comments