summaryrefslogtreecommitdiffstats
path: root/src/resolve/fuzz-etc-hosts.c
blob: 9fb1ee1b0b501077432b52574d29b797e91bd5fd (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
/* SPDX-License-Identifier: LGPL-2.1-or-later */

#include "fd-util.h"
#include "fuzz.h"
#include "resolved-etc-hosts.h"

int LLVMFuzzerTestOneInput(const uint8_t *data, size_t size) {
        _cleanup_fclose_ FILE *f = NULL;
        _cleanup_(etc_hosts_clear) EtcHosts h = {};

        fuzz_setup_logging();

        f = data_to_file(data, size);
        assert_se(f);

        (void) etc_hosts_parse(&h, f);

        return 0;
}