diff options
Diffstat (limited to 'Meta/Lagom/Fuzzers/FuzzTTF.cpp')
-rw-r--r-- | Meta/Lagom/Fuzzers/FuzzTTF.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Meta/Lagom/Fuzzers/FuzzTTF.cpp b/Meta/Lagom/Fuzzers/FuzzTTF.cpp index 0d251b5ea3..f02962a437 100644 --- a/Meta/Lagom/Fuzzers/FuzzTTF.cpp +++ b/Meta/Lagom/Fuzzers/FuzzTTF.cpp @@ -11,6 +11,6 @@ extern "C" int LLVMFuzzerTestOneInput(const uint8_t* data, size_t size) { ByteBuffer font_data = ByteBuffer::copy(data, size); - TTF::Font::load_from_memory(font_data); + (void)TTF::Font::try_load_from_memory(font_data); return 0; } |