Merge pull request #2064 from DidierA/data_atr_bugfix

Bugfix: `data atr -t` was reading uninitialized data
This commit is contained in:
Iceman 2023-08-03 14:58:59 +02:00 committed by GitHub
commit 175e804a13
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -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);