]> granicus.if.org Git - curl/commitdiff
initialize fread callback pointer to avoid compiler warning
authorYang Tse <yangsita@gmail.com>
Tue, 9 Jun 2009 00:49:34 +0000 (00:49 +0000)
committerYang Tse <yangsita@gmail.com>
Tue, 9 Jun 2009 00:49:34 +0000 (00:49 +0000)
CHANGES
RELEASE-NOTES
lib/formdata.c

diff --git a/CHANGES b/CHANGES
index fba25bbed36ed64c132f8b080fe0c975d539c28f..aec53194cf324450ec56da9d62d9336874db83d9 100644 (file)
--- a/CHANGES
+++ b/CHANGES
@@ -6,6 +6,11 @@
 
                                   Changelog
 
+Yang Tse (9 Jun 2009)
+- Daniel Steinberg pointed out that Curl_FormInit() in formdata.c was not
+  initializing the fread callback pointer and this triggered a compiler
+  warning, also provided a friendly suggestion on how to fix it.
+
 Daniel Stenberg (8 Jun 2009)
 - Claes Jakobsson provided a patch for libcurl-NSS that fixed a bad refcount
   issue with client certs that caused issues like segfaults.
@@ -21,7 +26,7 @@ Yang Tse (8 Jun 2009)
 - Igor Novoseltsev adjusted Makefile.vxworks to get sources and headers
   included from Makefile.inc, and provided docs\INSTALL VxWorks section.
 
-  I removed buildconf.bat from release and daily snapshot archives. This
+- I removed buildconf.bat from release and daily snapshot archives. This
   file is only for CVS tree checkout builds.
 
 Daniel Stenberg (8 Jun 2009)
index fa76d9afb00982a5674b675ae904c33b841f5b0a..2061683daf1f94a9fb01b2d1bff6e892847875b3 100644 (file)
@@ -36,6 +36,6 @@ advice from friends like these:
 
  Yang Tse, Daniel Fandrich, Kamil Dudka, Caolan McNamara, Frank McGeough,
  Andre Guibert de Bruet, Mike Crowe, Claes Jakobsson, John E. Malmberg,
- Aaron Oneal, Igor Novoseltsev, Eric Wong, Bill Hoffman
+ Aaron Oneal, Igor Novoseltsev, Eric Wong, Bill Hoffman, Daniel Steinberg,
 
         Thanks! (and sorry if I forgot to mention someone)
index aa644ecb2ee9fb5c751e221acc0269c96ae2b67b..f2a4892bfc8d4f7ba18ddf064dd9c18593cc5e20 100644 (file)
@@ -1425,6 +1425,7 @@ int Curl_FormInit(struct Form *form, struct FormData *formdata )
   form->data = formdata;
   form->sent = 0;
   form->fp = NULL;
+  form->fread_func = ZERO_NULL;
 
   return 0;
 }