mirror of
https://github.com/RfidResearchGroup/proxmark3.git
synced 2025-01-08 17:18:10 +08:00
Merge pull request #2064 from DidierA/data_atr_bugfix
Bugfix: `data atr -t` was reading uninitialized data
This commit is contained in:
commit
175e804a13
1 changed files with 1 additions and 1 deletions
|
@ -3423,7 +3423,7 @@ static int CmdAtrLookup(const char *Cmd) {
|
|||
void *argtable[] = {
|
||||
arg_param_begin,
|
||||
arg_str0("d", NULL, "<hex>", "ASN1 encoded byte array"),
|
||||
arg_lit0("t", "test", "perform selftest"),
|
||||
// arg_lit0("t", "test", "perform selftest"),
|
||||
arg_param_end
|
||||
};
|
||||
CLIExecWithReturn(ctx, Cmd, argtable, false);
|
||||
|
|
Loading…
Reference in a new issue