mirror of
https://github.com/RfidResearchGroup/proxmark3.git
synced 2025-08-14 18:48:13 -07:00
FIX: Coverity Scans complain about uninitialized usage of struct. Setting s->ODD and s->EVEN to zero should do the trick.
This commit is contained in:
parent
53831b8818
commit
bf22fab73b
5 changed files with 5 additions and 0 deletions
|
@ -687,6 +687,7 @@ static void Check_for_FilterFlipProperties(void)
|
|||
static void simulate_MFplus_RNG(uint32_t test_cuid, uint64_t test_key, uint32_t *nt_enc, uint8_t *par_enc)
|
||||
{
|
||||
struct Crypto1State sim_cs;
|
||||
sim_cs.odd = sim_cs.even = 0;
|
||||
|
||||
// init cryptostate with key:
|
||||
for(int8_t i = 47; i > 0; i -= 2) {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue