mirror of
https://github.com/curl/curl.git
synced 2026-05-30 17:37:28 +03:00
Suppress the "'convbuf' might be used uninitialized in this function" warning.
This commit is contained in:
parent
c25283185a
commit
1c63ceb317
1 changed files with 1 additions and 1 deletions
|
|
@ -150,7 +150,7 @@ size_t Curl_base64_encode(struct SessionHandle *data,
|
|||
char *output;
|
||||
char *base64data;
|
||||
#ifdef CURL_DOES_CONVERSIONS
|
||||
char *convbuf;
|
||||
char *convbuf = NULL;
|
||||
#endif
|
||||
|
||||
char *indata = (char *)inp;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue