aboutsummaryrefslogtreecommitdiff
path: root/docs/examples/httpcustomheader.c
diff options
context:
space:
mode:
authorDaniel Stenberg <daniel@haxx.se>2012-11-06 11:50:50 +0100
committerDaniel Stenberg <daniel@haxx.se>2012-11-06 11:51:19 +0100
commitfa6d78829fd30adabd6d622848cdfde8824cb973 (patch)
tree3803b49954bfee4a8807c8936dc02ccd31d2be5b /docs/examples/httpcustomheader.c
parent550e403f0023e1ca6c50a658e2d994e7f89d576b (diff)
httpcustomheader.c: free the headers after use
Diffstat (limited to 'docs/examples/httpcustomheader.c')
-rw-r--r--docs/examples/httpcustomheader.c5
1 files changed, 4 insertions, 1 deletions
diff --git a/docs/examples/httpcustomheader.c b/docs/examples/httpcustomheader.c
index 5c013750f..07ff95997 100644
--- a/docs/examples/httpcustomheader.c
+++ b/docs/examples/httpcustomheader.c
@@ -5,7 +5,7 @@
* | (__| |_| | _ <| |___
* \___|\___/|_| \_\_____|
*
- * Copyright (C) 1998 - 2011, Daniel Stenberg, <daniel@haxx.se>, et al.
+ * Copyright (C) 1998 - 2012, Daniel Stenberg, <daniel@haxx.se>, et al.
*
* This software is licensed as described in the file COPYING, which
* you should have received as part of this distribution. The terms
@@ -53,6 +53,9 @@ int main(void)
/* always cleanup */
curl_easy_cleanup(curl);
+
+ /* free the custom headers */
+ curl_slist_free_all(chunk);
}
return 0;
}