*Core: HTTP request clears 'body' at start of new request

git-svn-id: svn://ultimatepp.org/upp/trunk@5018 f0d560ea-af0d-0410-9eb7-867de7ffcac7
This commit is contained in:
cxl 2012-05-29 11:10:05 +00:00
parent ca235305a3
commit ac00befdcb

View file

@ -8,7 +8,7 @@ bool HttpRequest_Trace__;
#ifdef _DEBUG
_DBG_
// #define ENDZIP
// #define ENDZIP // only activate if zip pipe is in the question
#endif
void HttpRequest::Trace(bool b)
@ -356,6 +356,7 @@ void HttpRequest::Start()
header.Clear();
status_code = 0;
reason_phrase.Clear();
body.Clear();
WhenStart();
bool use_proxy = !IsNull(ssl ? ssl_proxy_host : proxy_host);