fix: sc bruteforce' - wrong assign

This commit is contained in:
iceman1001 2019-02-21 23:20:52 +01:00
commit 421604a395

View file

@ -946,7 +946,7 @@ static int smart_brute_sfi(bool decodeTLV){
return 0; return 0;
} }
static void smart_brute_options(bool decodeTLV){ static void smart_brute_options(bool decodeTLV) {
uint8_t* buf = calloc(USB_CMD_DATA_SIZE, sizeof(uint8_t)); uint8_t* buf = calloc(USB_CMD_DATA_SIZE, sizeof(uint8_t));
if ( !buf ) if ( !buf )
@ -1057,7 +1057,7 @@ int CmdSmartBruteforceSFI(const char *Cmd) {
continue; continue;
size_t aidlen = strlen(aid); size_t aidlen = strlen(aid);
char* caid = calloc( 8+2+aidlen+1, sizeof(uint8_t)); caid = calloc( 8+2+aidlen+1, sizeof(uint8_t));
snprintf(caid, 8+2+aidlen+1, SELECT, aidlen >> 1, aid); snprintf(caid, 8+2+aidlen+1, SELECT, aidlen >> 1, aid);
int hexlen = 0; int hexlen = 0;