mirror of
https://github.com/RfidResearchGroup/proxmark3.git
synced 2025-08-19 21:03:48 -07:00
FIX: there were no "memfree" call, there were only "free"
This commit is contained in:
parent
ad493abc2a
commit
2e350b19f7
1 changed files with 1 additions and 1 deletions
|
@ -1598,7 +1598,7 @@ out:
|
||||||
_aligned_free(bitsliced_even_states[block_idx]-ROLLBACK_SIZE);
|
_aligned_free(bitsliced_even_states[block_idx]-ROLLBACK_SIZE);
|
||||||
#endif
|
#endif
|
||||||
#else
|
#else
|
||||||
memfree(bitsliced_even_states[block_idx]-ROLLBACK_SIZE);
|
free(bitsliced_even_states[block_idx]-ROLLBACK_SIZE);
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue