mirror of
https://github.com/RfidResearchGroup/proxmark3.git
synced 2025-02-13 10:43:01 +08:00
FIX: wrong variable name.
This commit is contained in:
parent
1bfbe92a53
commit
c930078036
1 changed files with 1 additions and 1 deletions
|
@ -249,7 +249,7 @@ int emv_lookuptag(uint8_t* tag, emvtags *currentcard, uint8_t* outputval, uint8_
|
|||
returnedlength = currentcard->tag_9F12_len; goto exitfunction;}
|
||||
else if(*(tag+1) == 0x1A){
|
||||
memcpy(&returnedtag, currentcard->tag_9F1A, sizeof(currentcard->tag_9F1A));
|
||||
returnlength = sizeof(currentcard->tag_9F1A); goto exitfunction;}
|
||||
returnedlength = sizeof(currentcard->tag_9F1A); goto exitfunction;}
|
||||
else if(*(tag+1) == 0x1F){
|
||||
memcpy(&returnedtag, currentcard->tag_9F1F, currentcard->tag_9F1F_len);
|
||||
returnedlength = currentcard->tag_9F1F_len; goto exitfunction;}
|
||||
|
|
Loading…
Reference in a new issue