Suppress the "'convbuf' might be used uninitialized in this function" warning.
authorGisle Vanem <gvanem@broadpark.no>
Thu, 1 Feb 2007 12:23:00 +0000 (12:23 +0000)
committerGisle Vanem <gvanem@broadpark.no>
Thu, 1 Feb 2007 12:23:00 +0000 (12:23 +0000)
lib/base64.c

index aa03f83..d78ba66 100644 (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;