be2c3ee05d
Change-Id: I034d841618fbf878223c82ec30f0ad37678d737e Reviewed-on: https://skia-review.googlesource.com/c/skia/+/443899 Reviewed-by: Julia Lavrova <jlavrova@google.com> Reviewed-by: Florin Malita <fmalita@google.com> Commit-Queue: Robert Phillips <robertphillips@google.com>
24 lines
469 B
C++
24 lines
469 B
C++
/*
|
|
* Copyright 2021 Google, LLC
|
|
*
|
|
* Use of this source code is governed by a BSD-style license that can be
|
|
* found in the LICENSE file.
|
|
*/
|
|
|
|
#include "fuzz/Fuzz.h"
|
|
|
|
#if defined(SK_ENABLE_PARAGRAPH)
|
|
|
|
void fuzz_SkParagraph(Fuzz* f);
|
|
|
|
extern "C" int LLVMFuzzerTestOneInput(const uint8_t *data, size_t size) {
|
|
if (size > 4000) {
|
|
return 0;
|
|
}
|
|
auto fuzz = Fuzz(SkData::MakeWithoutCopy(data, size));
|
|
fuzz_SkParagraph(&fuzz);
|
|
return 0;
|
|
}
|
|
|
|
#endif
|