mirror of
https://github.com/curl/curl.git
synced 2026-04-21 21:52:13 +03:00
oops, the decode() function got its arguments reversed in my cleanup
operation!
This commit is contained in:
parent
0b1f7995c5
commit
99bc7e5fd3
1 changed files with 1 additions and 1 deletions
|
|
@ -76,7 +76,7 @@ static void decodeQuantum(unsigned char *dest, const char *src)
|
|||
* Given a base64 string at src, decode it into the memory pointed to by
|
||||
* dest. Returns the length of the decoded data.
|
||||
*/
|
||||
size_t Curl_base64_decode(char *dest, const char *src)
|
||||
size_t Curl_base64_decode(const char *src, char *dest)
|
||||
{
|
||||
int length = 0;
|
||||
int equalsTerm = 0;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue