summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJunio C Hamano <gitster@pobox.com>2011-05-04 14:58:56 -0700
committerJunio C Hamano <gitster@pobox.com>2011-05-04 14:58:56 -0700
commit419272d87b7a611ea55736c284df9615d22ec6af (patch)
tree06eb43fdbabdffdfd00044ed30ee0b50b454486f
parentbe44a20aa88b196b769dd894c0ac7a9ff5a7a1f6 (diff)
parent1e41827d2d5cf0e4c6ebff91958fa47d69b7ff42 (diff)
downloadgit-419272d87b7a611ea55736c284df9615d22ec6af.tar.gz
Merge branch 'sp/maint-clear-postfields' into maint
* sp/maint-clear-postfields: http: clear POSTFIELDS when initializing a slot
-rw-r--r--http.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/http.c b/http.c
index 9e767723ed..b27bb57d62 100644
--- a/http.c
+++ b/http.c
@@ -536,6 +536,7 @@ struct active_request_slot *get_active_slot(void)
curl_easy_setopt(slot->curl, CURLOPT_CUSTOMREQUEST, NULL);
curl_easy_setopt(slot->curl, CURLOPT_READFUNCTION, NULL);
curl_easy_setopt(slot->curl, CURLOPT_WRITEFUNCTION, NULL);
+ curl_easy_setopt(slot->curl, CURLOPT_POSTFIELDS, NULL);
curl_easy_setopt(slot->curl, CURLOPT_UPLOAD, 0);
curl_easy_setopt(slot->curl, CURLOPT_HTTPGET, 1);