Bugfix: data atr -t was reading uninitialized data

This commit is contained in:
DidierA 2023-08-03 14:43:58 +02:00
commit 22bc398b48

View file

@ -3423,7 +3423,7 @@ static int CmdAtrLookup(const char *Cmd) {
void *argtable[] = { void *argtable[] = {
arg_param_begin, arg_param_begin,
arg_str0("d", NULL, "<hex>", "ASN1 encoded byte array"), arg_str0("d", NULL, "<hex>", "ASN1 encoded byte array"),
arg_lit0("t", "test", "perform selftest"), // arg_lit0("t", "test", "perform selftest"),
arg_param_end arg_param_end
}; };
CLIExecWithReturn(ctx, Cmd, argtable, false); CLIExecWithReturn(ctx, Cmd, argtable, false);