mirror of
https://github.com/RfidResearchGroup/proxmark3.git
synced 2025-01-07 16:48:15 +08:00
fix uninitialised
This commit is contained in:
parent
ad97aa3d29
commit
1a565ae953
1 changed files with 1 additions and 2 deletions
|
@ -785,8 +785,7 @@ static int l_T55xx_readblock(lua_State *L) {
|
|||
// arg 2 = use GB
|
||||
static int l_T55xx_detect(lua_State *L) {
|
||||
bool useGB = false, usepwd = false, isok;
|
||||
uint32_t password;
|
||||
uint32_t gb;
|
||||
uint32_t gb, password = 0;
|
||||
size_t size;
|
||||
|
||||
//Check number of arguments
|
||||
|
|
Loading…
Reference in a new issue