HttpForm: implement copy constructor.
Thanks to GCI studdent arroyoc for finding that this was missing and HttpRequest.SetFormData couldn't work.
This commit is contained in:
parent
ff68ae9837
commit
7148abdcc2
@ -248,7 +248,9 @@ BHttpForm::BHttpForm()
|
||||
|
||||
BHttpForm::BHttpForm(const BHttpForm& other)
|
||||
:
|
||||
fType(B_HTTP_FORM_URL_ENCODED)
|
||||
fType(other.fType),
|
||||
fFields(other.fFields),
|
||||
fMultipartBoundary(other.fMultipartBoundary)
|
||||
{
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user