From: Gisle Vanem Date: Thu, 1 Feb 2007 12:23:00 +0000 (+0000) Subject: Suppress the "'convbuf' might be used uninitialized in this function" warning. X-Git-Tag: curl-7_16_2~388 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=1c63ceb317f8bed76edeb63df4d77986f60c8710;p=curl Suppress the "'convbuf' might be used uninitialized in this function" warning. --- diff --git a/lib/base64.c b/lib/base64.c index aa03f8346..d78ba663e 100644 --- a/lib/base64.c +++ b/lib/base64.c @@ -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;