mirror of
https://github.com/Proxmark/proxmark3.git
synced 2025-08-14 02:26:59 -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}
|
||||
local status = checkCommand(command)
|
||||
if status then return status, blockNo end
|
||||
start = start+n+1
|
||||
start = start + n
|
||||
remaining = remaining - n
|
||||
end
|
||||
return nil
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue