mirror of
https://github.com/RfidResearchGroup/proxmark3.git
synced 2024-11-11 01:55:38 +08:00
fix: coverty scan #277726, unsigned value comparision always true.
This commit is contained in:
parent
faa6ece881
commit
4cd72b95c5
1 changed files with 3 additions and 2 deletions
|
@ -1097,7 +1097,7 @@ void UsbPacketReceived(uint8_t *packet, int len) {
|
|||
break;
|
||||
#ifdef WITH_FLASH
|
||||
case CMD_READ_FLASH_MEM: {
|
||||
|
||||
/*
|
||||
LED_B_ON();
|
||||
uint16_t isok = 0;
|
||||
size_t len = 0;
|
||||
|
@ -1123,6 +1123,7 @@ void UsbPacketReceived(uint8_t *packet, int len) {
|
|||
}
|
||||
cmd_send(CMD_ACK, 1, 0, 0, 0, 0);
|
||||
LED_B_OFF();
|
||||
*/
|
||||
break;
|
||||
}
|
||||
case CMD_WRITE_FLASH_MEM: {
|
||||
|
@ -1179,7 +1180,7 @@ void UsbPacketReceived(uint8_t *packet, int len) {
|
|||
LED_B_OFF();
|
||||
break;
|
||||
}
|
||||
if ( page >= 0 && page < 3)
|
||||
if ( page < 3)
|
||||
isok = Flash_WipeMemoryPage(page);
|
||||
|
||||
cmd_send(CMD_ACK, isok, 0, 0, 0, 0);
|
||||
|
|
Loading…
Reference in a new issue