mirror of
https://github.com/Proxmark/proxmark3.git
synced 2025-08-20 13:23:25 -07:00
fix: array index out of range in mfkeys.log (thanks to @TomHarkness)
This commit is contained in:
parent
577b1c27f5
commit
b2e0ac5d3b
1 changed files with 1 additions and 1 deletions
|
@ -68,7 +68,7 @@ function checkBlock(blockNo, keys, keyType)
|
||||||
data = data}
|
data = data}
|
||||||
local status = checkCommand(command)
|
local status = checkCommand(command)
|
||||||
if status then return status, blockNo end
|
if status then return status, blockNo end
|
||||||
start = start+n+1
|
start = start + n
|
||||||
remaining = remaining - n
|
remaining = remaining - n
|
||||||
end
|
end
|
||||||
return nil
|
return nil
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue