mirror of
https://github.com/RfidResearchGroup/proxmark3.git
synced 2025-02-22 23:24:22 +08:00
free start pointer
This commit is contained in:
parent
26b37ce64f
commit
015e02a9bf
2 changed files with 5 additions and 1 deletions
|
@ -3,6 +3,8 @@ All notable changes to this project will be documented in this file.
|
|||
This project uses the changelog in accordance with [keepchangelog](http://keepachangelog.com/). Please use this to write notable changes, which is not the same as git commit log...
|
||||
|
||||
## [unreleased][unreleased]
|
||||
|
||||
## [midsummer][2021-06-25]
|
||||
- Added bruteforce function for the magic byte in `cmdlfnexwatch.c` and ability to clone with psk2 modulation (@Guilhem7, @MaximeBosca)
|
||||
- Changed `hw setmux` - improve user feedback for special case (@iceman1001)
|
||||
- Changed 'filename' - unified file name param across client (@iceman1001)
|
||||
|
|
|
@ -471,6 +471,8 @@ int CmdEM4x50Chk(const char *Cmd) {
|
|||
return res;
|
||||
}
|
||||
|
||||
uint8_t *pkeys = keys;
|
||||
|
||||
uint64_t t1 = msclock();
|
||||
|
||||
PrintAndLogEx(INFO, "You can cancel this operation by pressing the pm3 button");
|
||||
|
@ -505,7 +507,7 @@ int CmdEM4x50Chk(const char *Cmd) {
|
|||
keys += n;
|
||||
}
|
||||
|
||||
free(keys);
|
||||
free(pkeys);
|
||||
PrintAndLogEx(NORMAL, "");
|
||||
|
||||
if (status == PM3_SUCCESS) {
|
||||
|
|
Loading…
Reference in a new issue