Skip to content

Commit

Permalink
[#196] KMC Build fix - missing & for pointer
Browse files Browse the repository at this point in the history
  • Loading branch information
rjbrown6 committed Mar 26, 2024
1 parent dff75ab commit ebb8033
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/crypto/kmc/base64url.c
Original file line number Diff line number Diff line change
Expand Up @@ -286,7 +286,7 @@ int32_t base64urlDecode(const char_t* input, size_t inputLen, void* output,
//Check status code
if(!error)
{
base64urlDecode_rempadding(inputLen,value, n, p);
base64urlDecode_rempadding(inputLen,value, &n, p);
}

//Total number of bytes that have been written
Expand Down

0 comments on commit ebb8033

Please sign in to comment.