blob: f02962a437902236daa329fa6ab7df427ef98fdb (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
/*
* Copyright (c) 2021, the SerenityOS developers.
*
* SPDX-License-Identifier: BSD-2-Clause
*/
#include <LibTTF/Font.h>
#include <stddef.h>
#include <stdint.h>
extern "C" int LLVMFuzzerTestOneInput(const uint8_t* data, size_t size)
{
ByteBuffer font_data = ByteBuffer::copy(data, size);
(void)TTF::Font::try_load_from_memory(font_data);
return 0;
}
|