From 6a88c8d845bc5aa6b0170f4194bc8cbde36976e0 Mon Sep 17 00:00:00 2001 From: Daniel Stenberg Date: Mon, 28 Oct 2002 19:21:30 +0000 Subject: [PATCH] prevent compiler warning --- lib/formdata.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/formdata.c b/lib/formdata.c index d8df7e3..c883ec7 100644 --- a/lib/formdata.c +++ b/lib/formdata.c @@ -637,7 +637,7 @@ CURLFORMcode FormAdd(struct curl_httppost **httppost, struct curl_httppost *post = NULL; CURLformoption option; struct curl_forms *forms = NULL; - char *array_value; /* value read from an array */ + char *array_value=NULL; /* value read from an array */ /* This is a state variable, that if TRUE means that we're parsing an array that we got passed to us. If FALSE we're parsing the input -- 2.7.4