mirror of
https://github.com/RfidResearchGroup/proxmark3.git
synced 2025-08-20 13:23:51 -07:00
FIX: cherrypick some fixes from https://github.com/Proxmark/proxmark3/pull/550 (pwpiwi)
This commit is contained in:
parent
fe2f99190b
commit
aad1e65b97
3 changed files with 11 additions and 45 deletions
|
@ -138,8 +138,13 @@ bool verify_key(uint32_t cuid, noncelist_t *nonces, uint8_t *best_first_bytes, u
|
|||
}
|
||||
return true;
|
||||
}
|
||||
|
||||
static void* __attribute__((force_align_arg_pointer)) crack_states_thread(void* x){
|
||||
static void*
|
||||
#ifdef __has_attribute
|
||||
#if __has_attribute(force_align_arg_pointer)
|
||||
__attribute__((force_align_arg_pointer))
|
||||
#endif
|
||||
#endif
|
||||
crack_states_thread(void* x){
|
||||
struct arg {
|
||||
bool silent;
|
||||
int thread_ID;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue