Line | Count | Source |
1 | /* | |
2 | * Copyright (c) 2021, the SerenityOS developers. | |
3 | * | |
4 | * SPDX-License-Identifier: BSD-2-Clause | |
5 | */ | |
6 | ||
7 | #include <LibGfx/Font/TrueType/Font.h> | |
8 | #include <stddef.h> | |
9 | #include <stdint.h> | |
10 | ||
11 | extern "C" int LLVMFuzzerTestOneInput(u8 const* data, size_t size) | |
12 | 878 | { |
13 | 878 | (void)TTF::Font::try_load_from_externally_owned_memory({ data, size }); |
14 | 878 | return 0; |
15 | 878 | } |