Suppress the "'convbuf' might be used uninitialized in this function" warning.

This commit is contained in:
Gisle Vanem 2007-02-01 12:23:00 +00:00
parent c25283185a
commit 1c63ceb317
1 changed files with 1 additions and 1 deletions

View File

@ -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;