| Index: Source/modules/fetch/Response.cpp
|
| diff --git a/Source/modules/fetch/Response.cpp b/Source/modules/fetch/Response.cpp
|
| index 39f49b44bfea3403325919bc9f7dba207fd8e67c..f5e267308a00c6e9ffbb417bea1d93ec802203e3 100644
|
| --- a/Source/modules/fetch/Response.cpp
|
| +++ b/Source/modules/fetch/Response.cpp
|
| @@ -98,7 +98,7 @@ Response* Response::create(ExecutionContext* context, const BodyInit& body, cons
|
| return create(context, blob, ResponseInit(responseInit, exceptionState), exceptionState);
|
| }
|
| if (body.isFormData()) {
|
| - RefPtr<DOMFormData> domFormData = body.getAsFormData();
|
| + RefPtrWillBeRawPtr<DOMFormData> domFormData = body.getAsFormData();
|
| OwnPtr<BlobData> blobData = BlobData::create();
|
| // FIXME: the same code exist in RequestInit::RequestInit().
|
| RefPtr<FormData> httpBody = domFormData->createMultiPartFormData();
|
|
|