mirror of
https://github.com/RfidResearchGroup/proxmark3.git
synced 2025-08-21 22:03:42 -07:00
create files iso file id byte order fix
This commit is contained in:
parent
674568dfd9
commit
bac1cfb5b5
1 changed files with 1 additions and 2 deletions
|
@ -3344,8 +3344,7 @@ static int DesfireCreateFileParameters(
|
|||
*datalen = 1;
|
||||
|
||||
if (isofileid > 0) {
|
||||
data[1] = (isofileid >> 8) & 0xff;
|
||||
data[2] = isofileid & 0xff;
|
||||
Uint2byteToMemLe(&data[1], isofileid);
|
||||
*datalen += 2;
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue