summaryrefslogtreecommitdiff
path: root/community/sword/curl_7.20.patch
blob: 88763188dd5e2cc7f148f3e70aac964549e53a09 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
--- src/mgr/curlftpt.cpp	(revision 2505)
+++ src/mgr/curlftpt.cpp	(revision 2506)
@@ -177,6 +177,9 @@
 		res = curl_easy_perform(session);
 		SWLog::getSystemLog()->logDebug("***** Finished performing curl easy action. \n");
 
+		// it seems CURL tries to use this option data later for some reason, so we unset here
+		curl_easy_setopt(session, CURLOPT_PROGRESSDATA, (void*)NULL);
+
 		if(CURLE_OK != res) {
 			retVal = -1;
 		}