mirror of
https://github.com/Proxmark/proxmark3.git
synced 2025-08-14 10:36:58 -07:00
Merge branch 'master' into fix_printf
This commit is contained in:
commit
96be871374
9 changed files with 18 additions and 14 deletions
|
@ -8,6 +8,7 @@
|
|||
// EMV commands
|
||||
//-----------------------------------------------------------------------------
|
||||
|
||||
#include <ctype.h>
|
||||
#include "cmdemv.h"
|
||||
#include "test/cryptotest.h"
|
||||
|
||||
|
@ -69,7 +70,7 @@ int CmdHFEMVSelect(const char *cmd) {
|
|||
return 1;
|
||||
}
|
||||
|
||||
if (isxdigit(c)) {
|
||||
if (isxdigit((unsigned char)c)) {
|
||||
switch(param_gethex_to_eol(cmd, cmdp, data, sizeof(data), &datalen)) {
|
||||
case 1:
|
||||
PrintAndLog("Invalid HEX value.");
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue