mirror of
https://github.com/RfidResearchGroup/proxmark3.git
synced 2025-08-21 05:43:48 -07:00
FIX: marshmellow42 's fix using memcpy instead of re-assign pointer.
Ref: 38b3509542
This commit is contained in:
parent
f7f844d0ba
commit
1fe0992d06
1 changed files with 5 additions and 5 deletions
|
@ -925,16 +925,16 @@ char *GetFSKType(uint8_t fchigh, uint8_t fclow, uint8_t invert)
|
|||
char *fskType = fType;
|
||||
if (fchigh==10 && fclow==8){
|
||||
if (invert) //fsk2a
|
||||
fskType = "FSK2a";
|
||||
memcpy(fskType, "FSK2a", 5);
|
||||
else //fsk2
|
||||
fskType = "FSK2";
|
||||
memcpy(fskType, "FSK2", 4);
|
||||
} else if (fchigh == 8 && fclow == 5) {
|
||||
if (invert)
|
||||
fskType = "FSK1";
|
||||
memcpy(fskType, "FSK1", 4);
|
||||
else
|
||||
fskType = "FSK1a";
|
||||
memcpy(fskType, "FSK1a", 5);
|
||||
} else {
|
||||
fskType = "FSK??";
|
||||
memcpy(fskType, "FSK??", 5);
|
||||
}
|
||||
return fskType;
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue