mirror of
https://github.com/RfidResearchGroup/proxmark3.git
synced 2025-08-22 06:13:51 -07:00
replace bzero with memset
This commit is contained in:
parent
22ae67d2cf
commit
0f4b787df1
1 changed files with 1 additions and 1 deletions
|
@ -369,7 +369,7 @@ int CmdEM4x50Brute(const char *Cmd) {
|
||||||
CLIExecWithReturn(ctx, Cmd, argtable, true);
|
CLIExecWithReturn(ctx, Cmd, argtable, true);
|
||||||
|
|
||||||
em4x50_data_t etd;
|
em4x50_data_t etd;
|
||||||
bzero(&etd, sizeof(etd));
|
memset(&etd, 0, sizeof(etd));
|
||||||
|
|
||||||
int mode_len = 64;
|
int mode_len = 64;
|
||||||
char mode[64];
|
char mode[64];
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue