mirror of
https://github.com/RfidResearchGroup/proxmark3.git
synced 2025-08-14 10:37:23 -07:00
Fix wtf bug in t55xxAquireAndCompareBlock0
This commit is contained in:
parent
c45331e1e2
commit
899f269a99
1 changed files with 1 additions and 1 deletions
|
@ -287,7 +287,7 @@ bool t55xxAquireAndCompareBlock0(bool usepwd, uint32_t password, uint32_t known_
|
|||
continue;
|
||||
}
|
||||
|
||||
for (uint16_t i = 0; DemodBufferLen - 32; i++) {
|
||||
for (uint16_t i = 0; i < DemodBufferLen - 32; i++) {
|
||||
uint32_t tmp = PackBits(i, 32, DemodBuffer);
|
||||
if (tmp == known_block0) {
|
||||
config.offset = i;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue