Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions src/wp_rsa_kmgmt.c
Original file line number Diff line number Diff line change
Expand Up @@ -3940,7 +3940,7 @@ static int wp_rsa_encode_text_format_hex(const mp_int* num, char* textData,
{
unsigned char* binData = NULL;
size_t binLen = 0;
size_t printAmt;
size_t printAmt = 0;
size_t dPos = *pos;
int bytes = 0;
int i;
Expand Down Expand Up @@ -4036,7 +4036,7 @@ static int wp_rsa_encode_text(wp_RsaEncDecCtx* ctx, OSSL_CORE_BIO* cBio,
char* textData = NULL;
size_t textLen = 0;
size_t pos = 0;
size_t printAmt;
size_t printAmt = 0;
char* expStr;
int expLen;

Expand Down
Loading