mirror of
https://github.com/serai-dex/serai.git
synced 2025-12-09 12:49:23 +00:00
Use zeroize instead of 0-sets
This commit is contained in:
@@ -232,7 +232,7 @@ where
|
||||
|
||||
// Accumulate this bit
|
||||
these_bits |= bit << (i % bits_per_group);
|
||||
bit = 0;
|
||||
bit.zeroize();
|
||||
|
||||
if (i % bits_per_group) == (bits_per_group - 1) {
|
||||
let last = i == (capacity - 1);
|
||||
|
||||
Reference in New Issue
Block a user