mirror of
https://github.com/RfidResearchGroup/proxmark3.git
synced 2025-08-21 22:03:42 -07:00
cppcheck fix uninitialized variable
This commit is contained in:
parent
b8458322e1
commit
127aebd8b0
1 changed files with 1 additions and 1 deletions
|
@ -263,7 +263,7 @@ static int CmdParadoxClone(const char *Cmd) {
|
|||
return PM3_EINVARG;
|
||||
}
|
||||
|
||||
uint32_t blocks[4];
|
||||
uint32_t blocks[4] = {0};
|
||||
|
||||
if (raw_len != 0) {
|
||||
if (raw_len != 12) {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue