mirror of
https://github.com/RfidResearchGroup/proxmark3.git
synced 2025-08-20 05:13:46 -07:00
FIX: Coverity, uninitialized scalar variable, filename array could be NULL..
This commit is contained in:
parent
628d1cb085
commit
5cba446201
1 changed files with 1 additions and 1 deletions
|
@ -943,7 +943,7 @@ int usage_hf_iclass_clone(void) {
|
||||||
}
|
}
|
||||||
|
|
||||||
int CmdHFiClassCloneTag(const char *Cmd) {
|
int CmdHFiClassCloneTag(const char *Cmd) {
|
||||||
char filename[FILE_PATH_SIZE];
|
char filename[FILE_PATH_SIZE] = { 0x00 };
|
||||||
char tempStr[50]={0};
|
char tempStr[50]={0};
|
||||||
uint8_t KEY[8]={0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00};
|
uint8_t KEY[8]={0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00};
|
||||||
uint8_t keyNbr = 0;
|
uint8_t keyNbr = 0;
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue