mirror of
https://github.com/Proxmark/proxmark3.git
synced 2025-08-20 05:13:22 -07:00
fix char* pointer not assigned
fix
This commit is contained in:
parent
a0cc89b479
commit
0c50084a2b
1 changed files with 2 additions and 1 deletions
|
@ -919,7 +919,8 @@ int CmdDetectClockRate(const char *Cmd)
|
|||
|
||||
char *GetFSKType(uint8_t fchigh, uint8_t fclow, uint8_t invert)
|
||||
{
|
||||
char *fskType;
|
||||
static char fType[8];
|
||||
char *fskType = fType;
|
||||
if (fchigh==10 && fclow==8){
|
||||
if (invert) //fsk2a
|
||||
fskType = "FSK2a";
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue