2018-03-21 14:17:25 +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 "../Fuzz.h"
|
2018-12-14 16:42:53 +00:00
|
|
|
#include "SkFontMgrPriv.h"
|
2019-03-20 16:08:46 +00:00
|
|
|
#include "TestFontMgr.h"
|
2018-03-21 14:17:25 +00:00
|
|
|
|
|
|
|
void fuzz_NullCanvas(Fuzz* f);
|
|
|
|
|
|
|
|
extern "C" int LLVMFuzzerTestOneInput(const uint8_t *data, size_t size) {
|
2019-03-20 16:12:10 +00:00
|
|
|
gSkFontMgr_DefaultFactory = &ToolUtils::MakePortableFontMgr;
|
2018-03-21 14:17:25 +00:00
|
|
|
auto fuzz = Fuzz(SkData::MakeWithoutCopy(data, size));
|
|
|
|
fuzz_NullCanvas(&fuzz);
|
|
|
|
return 0;
|
|
|
|
}
|