summaryrefslogtreecommitdiff
path: root/Meta/Lagom/Fuzzers/FuzzDeflateDecompression.cpp
blob: 0d689989fc10d72a24092d39859d98482d6b02b0 (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(const uint8_t* data, size_t size)
{
    auto result = Compress::DeflateDecompressor::decompress_all(ReadonlyBytes { data, size });
    return result.has_value();
}