aboutsummaryrefslogtreecommitdiff
path: root/src/common/windows
diff options
context:
space:
mode:
authorted.mielczarek <ted.mielczarek@4c0a9323-5329-0410-9bdc-e9ce6186880e>2010-08-20 12:19:38 +0000
committerted.mielczarek <ted.mielczarek@4c0a9323-5329-0410-9bdc-e9ce6186880e>2010-08-20 12:19:38 +0000
commit3b7d8ee3621e1f70dc1097258743e35309823ed7 (patch)
treef4628d904e55865c6ac471951dc6b1a1660c7ea7 /src/common/windows
parentClean up old glog code and move deps to new reference in third_party. (diff)
downloadbreakpad-3b7d8ee3621e1f70dc1097258743e35309823ed7.tar.xz
Disable cookies in Windows HTTPUpload
R=nealsid at http://breakpad.appspot.com/161001/show git-svn-id: http://google-breakpad.googlecode.com/svn/trunk@661 4c0a9323-5329-0410-9bdc-e9ce6186880e
Diffstat (limited to 'src/common/windows')
-rw-r--r--src/common/windows/http_upload.cc1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/common/windows/http_upload.cc b/src/common/windows/http_upload.cc
index 77c5f749..14f46ddf 100644
--- a/src/common/windows/http_upload.cc
+++ b/src/common/windows/http_upload.cc
@@ -166,6 +166,7 @@ bool HTTPUpload::SendRequest(const wstring &url,
}
DWORD http_open_flags = secure ? INTERNET_FLAG_SECURE : 0;
+ http_open_flags |= INTERNET_FLAG_NO_COOKIES;
AutoInternetHandle request(HttpOpenRequest(connection.get(),
L"POST",
path,