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.
|
|
|
|
*/
|
|
|
|
|
2019-04-23 17:05:21 +00:00
|
|
|
#include "fuzz/Fuzz.h"
|
|
|
|
#include "src/core/SkFontMgrPriv.h"
|
|
|
|
#include "tools/fonts/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) {
|
2020-06-14 19:03:34 +00:00
|
|
|
if (size > 4000) {
|
|
|
|
return 0;
|
|
|
|
}
|
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;
|
|
|
|
}
|