indentation fix.

Catched by Axel.
This commit is contained in:
Adrien Destugues 2015-02-19 12:20:07 +01:00
parent 6f1d5d480b
commit caf2bf0181

View File

@ -402,12 +402,12 @@ BHttpRequest::_ProtocolLoop()
if ((code == B_HTTP_STATUS_FOUND
|| code == B_HTTP_STATUS_SEE_OTHER)
&& fRequestMethod == B_HTTP_POST) {
SetMethod(B_HTTP_GET);
delete fOptPostFields;
fOptPostFields = NULL;
delete fOptInputData;
fOptInputData = NULL;
fOptInputDataSize = 0;
SetMethod(B_HTTP_GET);
delete fOptPostFields;
fOptPostFields = NULL;
delete fOptInputData;
fOptInputData = NULL;
fOptInputDataSize = 0;
}
if (--maxRedirs > 0) {