You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
31 lines
796 B
31 lines
796 B
7 months ago
|
/*
|
||
|
* 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 "SkFontMgrPriv.h"
|
||
|
#include "SkStream.h"
|
||
|
#include "SkTestFontMgr.h"
|
||
|
#include "Skottie.h"
|
||
|
|
||
|
void FuzzSkottieJSON(sk_sp<SkData> bytes) {
|
||
|
SkMemoryStream stream(bytes);
|
||
|
auto animation = skottie::Animation::Make(&stream);
|
||
|
if (!animation) {
|
||
|
return;
|
||
|
}
|
||
|
animation->seek(0.1337f); // A "nothing up my sleeve" number
|
||
|
}
|
||
|
|
||
|
#if defined(IS_FUZZING_WITH_LIBFUZZER)
|
||
|
extern "C" int LLVMFuzzerTestOneInput(const uint8_t *data, size_t size) {
|
||
|
gSkFontMgr_DefaultFactory = &sk_tool_utils::MakePortableFontMgr;
|
||
|
auto bytes = SkData::MakeWithoutCopy(data, size);
|
||
|
FuzzSkottieJSON(bytes);
|
||
|
return 0;
|
||
|
}
|
||
|
#endif
|