summaryrefslogtreecommitdiff
path: root/Meta/Lagom/Fuzzers/FuzzDeflateCompression.cpp
blob: 8e21aa96be211967ba458c19d35f89cdaa20dfba (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
/*
 * Copyright (c) 2021, the SerenityOS developers.
 *
 * SPDX-License-Identifier: BSD-2-Clause
 */

#include <LibCompress/Deflate.h>
#include <stdio.h>

extern "C" int LLVMFuzzerTestOneInput(uint8_t const* data, size_t size)
{
    auto result = Compress::DeflateCompressor::compress_all(ReadonlyBytes { data, size });
    return result.has_value();
}