view fuzz/fuzzer-preauth.c @ 1875:bfa92efd814b

Make missing homedir non-fatal, instead use / Fixes github #146
author Matt Johnston <matt@ucc.asn.au>
date Thu, 24 Feb 2022 11:51:51 +0800
parents 97ad26e397a5
children
line wrap: on
line source

#include "fuzz.h"

int LLVMFuzzerTestOneInput(const uint8_t *Data, size_t Size) {
	return fuzz_run_server(Data, Size, 0, 0);
}