Skip to content

Commit

Permalink
Fix Scan-Build: Value stored but never Read
Browse files Browse the repository at this point in the history
  • Loading branch information
cedelavergne-ledger committed Jan 26, 2024
1 parent 0ca6412 commit 5d6dc63
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -333,7 +333,7 @@ void CCID_CmdDecode(USBD_HandleTypeDef *pdev)
RDR_to_PC_SlotStatus(errorCode);
break;
case PC_TO_RDR_XFRBLOCK:
errorCode = PC_to_RDR_XfrBlock();
PC_to_RDR_XfrBlock();
// asynchronous // RDR_to_PC_DataBlock(errorCode);
break;
case PC_TO_RDR_GETPARAMETERS:
Expand Down Expand Up @@ -373,7 +373,7 @@ void CCID_CmdDecode(USBD_HandleTypeDef *pdev)
RDR_to_PC_DataRateAndClockFrequency(errorCode);
break;
case PC_TO_RDR_SECURE:
errorCode = PC_TO_RDR_Secure();
PC_TO_RDR_Secure();
// asynchronous // RDR_to_PC_DataBlock(errorCode);
break;
default:
Expand Down

0 comments on commit 5d6dc63

Please sign in to comment.