| Index: third_party/WebKit/Source/bindings/core/v8/serialization/SerializedScriptValueFuzzer.cpp
|
| diff --git a/third_party/WebKit/Source/bindings/core/v8/serialization/SerializedScriptValueFuzzer.cpp b/third_party/WebKit/Source/bindings/core/v8/serialization/SerializedScriptValueFuzzer.cpp
|
| index e9cd65bd6cf6425639e954734d7ab2ba9dd31b2e..56cca93f706653fc9e2ed1751243a2c17150aa66 100644
|
| --- a/third_party/WebKit/Source/bindings/core/v8/serialization/SerializedScriptValueFuzzer.cpp
|
| +++ b/third_party/WebKit/Source/bindings/core/v8/serialization/SerializedScriptValueFuzzer.cpp
|
| @@ -53,10 +53,10 @@ extern "C" int LLVMFuzzerInitialize(int* argc, char*** argv) {
|
| pageHolder = DummyPageHolder::create().release();
|
| pageHolder->frame().settings()->setScriptEnabled(true);
|
| blobInfoArray = new WebBlobInfoArray();
|
| - blobInfoArray->emplaceAppend("d875dfc2-4505-461b-98fe-0cf6cc5eaf44",
|
| - "text/plain", 12);
|
| - blobInfoArray->emplaceAppend("d875dfc2-4505-461b-98fe-0cf6cc5eaf44",
|
| - "/native/path", "path", "text/plain");
|
| + blobInfoArray->emplace_back("d875dfc2-4505-461b-98fe-0cf6cc5eaf44",
|
| + "text/plain", 12);
|
| + blobInfoArray->emplace_back("d875dfc2-4505-461b-98fe-0cf6cc5eaf44",
|
| + "/native/path", "path", "text/plain");
|
| return 0;
|
| }
|
|
|
|
|