2018-06-08 16:25:38 +00:00
|
|
|
/*
|
|
|
|
* Copyright 2018 Google, LLC
|
|
|
|
*
|
|
|
|
* Use of this source code is governed by a BSD-style license that can be
|
|
|
|
* found in the LICENSE file.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include "SkData.h"
|
|
|
|
#include "SkJSON.h"
|
|
|
|
#include "SkStream.h"
|
|
|
|
|
2018-06-19 15:27:20 +00:00
|
|
|
void FuzzJSON(sk_sp<SkData> bytes) {
|
2018-06-14 19:03:21 +00:00
|
|
|
skjson::DOM dom(static_cast<const char*>(bytes->data()), bytes->size());
|
2018-06-08 16:25:38 +00:00
|
|
|
SkDynamicMemoryWStream wstream;
|
|
|
|
dom.write(&wstream);
|
|
|
|
}
|
|
|
|
|
|
|
|
#if defined(IS_FUZZING_WITH_LIBFUZZER)
|
|
|
|
extern "C" int LLVMFuzzerTestOneInput(const uint8_t *data, size_t size) {
|
|
|
|
auto bytes = SkData::MakeWithoutCopy(data, size);
|
2018-06-19 15:27:20 +00:00
|
|
|
FuzzJSON(bytes);
|
2018-06-08 16:25:38 +00:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
#endif
|