]> git.ipfire.org Git - thirdparty/systemd.git/blob - src/fuzz/fuzz-journald-syslog.c
test-bus-vtable: also print introspection for the fallback vtable
[thirdparty/systemd.git] / src / fuzz / fuzz-journald-syslog.c
1 /* SPDX-License-Identifier: LGPL-2.1+ */
2
3 #include "fuzz.h"
4 #include "fuzz-journald.h"
5 #include "journald-syslog.h"
6
7 int LLVMFuzzerTestOneInput(const uint8_t *data, size_t size) {
8 fuzz_journald_processing_function(data, size, server_process_syslog_message);
9 return 0;
10 }