mirror of
https://github.com/RfidResearchGroup/proxmark3.git
synced 2025-03-04 03:58:08 +08:00
coverity fix
This commit is contained in:
parent
902b6c9866
commit
3d76be2dbd
1 changed files with 3 additions and 1 deletions
|
@ -52,13 +52,15 @@ int CmdHFSearch(const char *Cmd) {
|
||||||
CLIParserInit(&ctx, "hf search",
|
CLIParserInit(&ctx, "hf search",
|
||||||
"Will try to find a HF read out of the unknown tag.\n"
|
"Will try to find a HF read out of the unknown tag.\n"
|
||||||
"Continues to search for all different HF protocols.",
|
"Continues to search for all different HF protocols.",
|
||||||
"hf sniff"
|
"hf search"
|
||||||
);
|
);
|
||||||
void *argtable[] = {
|
void *argtable[] = {
|
||||||
arg_param_begin,
|
arg_param_begin,
|
||||||
arg_param_end
|
arg_param_end
|
||||||
};
|
};
|
||||||
CLIExecWithReturn(ctx, Cmd, argtable, true);
|
CLIExecWithReturn(ctx, Cmd, argtable, true);
|
||||||
|
CLIParserFree(ctx);
|
||||||
|
|
||||||
int res = PM3_ESOFT;
|
int res = PM3_ESOFT;
|
||||||
|
|
||||||
PROMPT_CLEARLINE;
|
PROMPT_CLEARLINE;
|
||||||
|
|
Loading…
Reference in a new issue