mirror of https://github.com/google/oss-fuzz.git
18 lines
485 B
C++
18 lines
485 B
C++
// Copyright 2015 The Chromium Authors. All rights reserved.
|
|
// Use of this source code is governed by a BSD-style license that can be
|
|
// found in the LICENSE file.
|
|
|
|
#include <stddef.h>
|
|
#include <stdint.h>
|
|
|
|
#include "woff2_dec.h"
|
|
|
|
// Entry point for LibFuzzer.
|
|
extern "C" int LLVMFuzzerTestOneInput(const uint8_t* data, size_t size) {
|
|
std::string buf;
|
|
woff2::WOFF2StringOut out(&buf);
|
|
out.SetMaxSize(30 * 1024 * 1024);
|
|
woff2::ConvertWOFF2ToTTF(data, size, &out);
|
|
return 0;
|
|
}
|