mirror of
https://github.com/RfidResearchGroup/proxmark3.git
synced 2025-01-02 21:54:10 +08:00
CHG: fix covertyscan error CID 133851, Cardstate can't not be SIM_NOFIELD when it arrives to that switch statement.
This commit is contained in:
parent
7898d3b55f
commit
10493a0f19
1 changed files with 1 additions and 1 deletions
|
@ -659,7 +659,7 @@ void SimulateIso14443bTag(uint32_t pupi) {
|
||||||
*/
|
*/
|
||||||
|
|
||||||
switch (cardSTATE) {
|
switch (cardSTATE) {
|
||||||
case SIM_NOFIELD:
|
//case SIM_NOFIELD:
|
||||||
case SIM_HALTED:
|
case SIM_HALTED:
|
||||||
case SIM_IDLE: {
|
case SIM_IDLE: {
|
||||||
LogTrace(receivedCmd, len, 0, 0, NULL, TRUE);
|
LogTrace(receivedCmd, len, 0, 0, NULL, TRUE);
|
||||||
|
|
Loading…
Reference in a new issue