mirror of
https://github.com/RfidResearchGroup/proxmark3.git
synced 2025-08-14 18:48:13 -07:00
fix cid 390242 - uninitialized var usage
This commit is contained in:
parent
167cca5fc0
commit
c5119e5bea
1 changed files with 1 additions and 1 deletions
|
@ -1673,7 +1673,7 @@ void SniffIso15693(uint8_t jam_search_len, uint8_t *jam_search_string, bool icla
|
|||
dma_start_time = GetCountSspClk() & 0xfffffff0;
|
||||
}
|
||||
|
||||
volatile uint16_t sniffdata;
|
||||
volatile uint16_t sniffdata = 0;
|
||||
volatile uint16_t sniffdata_prev = sniffdata;
|
||||
sniffdata = *upTo++;
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue