From 1c63ceb317f8bed76edeb63df4d77986f60c8710 Mon Sep 17 00:00:00 2001 From: Gisle Vanem Date: Thu, 1 Feb 2007 12:23:00 +0000 Subject: Suppress the "'convbuf' might be used uninitialized in this function" warning. --- lib/base64.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'lib/base64.c') 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; -- cgit v1.2.3