Jon Topper pointed out a code example bug
authorDaniel Stenberg <daniel@haxx.se>
Mon, 2 Sep 2002 08:38:30 +0000 (08:38 +0000)
committerDaniel Stenberg <daniel@haxx.se>
Mon, 2 Sep 2002 08:38:30 +0000 (08:38 +0000)
docs/libcurl-the-guide

index a196d8e..f091dfe 100644 (file)
@@ -753,7 +753,7 @@ Customizing Operations
  request, and you're free to pass any amount of extra headers that you think
  fit. Adding headers are this easy:
 
-    struct curl_slist *headers;
+    struct curl_slist *headers=NULL; /* init to NULL is important */
 
     headers = curl_slist_append(headers, "Hey-server-hey: how are you?");
     headers = curl_slist_append(headers, "X-silly-content: yes");