mirror of
https://github.com/RfidResearchGroup/proxmark3.git
synced 2025-03-20 12:07:05 +08: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) {
|
||||
char filename[FILE_PATH_SIZE];
|
||||
char filename[FILE_PATH_SIZE] = { 0x00 };
|
||||
char tempStr[50]={0};
|
||||
uint8_t KEY[8]={0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00};
|
||||
uint8_t keyNbr = 0;
|
||||
|
|
Loading…
Add table
Reference in a new issue