mirror of
https://github.com/RfidResearchGroup/proxmark3.git
synced 2025-08-19 04:50:12 -07:00
Coverity Scan 133850, need to ask @jason about this one.
This commit is contained in:
parent
01629305d8
commit
a28d34f407
1 changed files with 1 additions and 1 deletions
|
@ -297,7 +297,7 @@ int CmdLegicDecode(const char *Cmd) {
|
||||||
i = 8;
|
i = 8;
|
||||||
|
|
||||||
wrp = data_buf[7] & 0x0F;
|
wrp = data_buf[7] & 0x0F;
|
||||||
wrc = (data_buf[7] & 0x07) >> 4;
|
wrc = (data_buf[7] & 0x07) >> 4; // ICEMAN 20160802, this will always be ZERO
|
||||||
|
|
||||||
bool hasWRC = (wrc > 0);
|
bool hasWRC = (wrc > 0);
|
||||||
bool hasWRP = (wrp > wrc);
|
bool hasWRP = (wrp > wrc);
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue