Skip to content

Commit

Permalink
EFR32: Crypto PSA bugfix: Missing return on success. (#23033)
Browse files Browse the repository at this point in the history
  • Loading branch information
rcasallas-silabs authored Oct 6, 2022
1 parent 7301ecf commit b3225e8
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions src/platform/EFR32/CHIPCryptoPALPsaEfr32.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1784,6 +1784,7 @@ CHIP_ERROR ExtractKIDFromX509Cert(bool extractSKID, const ByteSpan & certificate
{
kid.reduce_size(len);
}
ExitNow(error = CHIP_NO_ERROR);
break;
}
p += len;
Expand Down

0 comments on commit b3225e8

Please sign in to comment.