Skip to content

Commit

Permalink
p11test: Initialize variable
Browse files Browse the repository at this point in the history
Thanks Coverity CID 425951
  • Loading branch information
xhanulik committed May 27, 2024
1 parent 48e5007 commit 6eae1d3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/tests/p11test/p11test_case_readonly.c
Original file line number Diff line number Diff line change
Expand Up @@ -394,7 +394,7 @@ int verify_message_openssl(test_cert_t *o, token_info_t *info, CK_BYTE *message,
{
CK_RV rv;
CK_BYTE *cmp_message = NULL;
unsigned int cmp_message_length;
unsigned int cmp_message_length = 0;

if (o->type == EVP_PKEY_RSA) {
const EVP_MD *md = NULL;
Expand Down

0 comments on commit 6eae1d3

Please sign in to comment.