Elijah Newren | 8bff5ca | 2023-02-24 00:09:20 +0000 | [diff] [blame] | 1 | #include "git-compat-util.h" |
Josh Steadmon | 5e47215 | 2018-10-12 17:58:40 -0700 | [diff] [blame] | 2 | #include "packfile.h" |
3 | |||||
4 | int LLVMFuzzerTestOneInput(const uint8_t *data, size_t size); | ||||
5 | |||||
6 | int LLVMFuzzerTestOneInput(const uint8_t *data, size_t size) | ||||
7 | { | ||||
8 | enum object_type type; | ||||
9 | unsigned long len; | ||||
10 | |||||
11 | unpack_object_header_buffer((const unsigned char *)data, | ||||
12 | (unsigned long)size, &type, &len); | ||||
13 | |||||
14 | return 0; | ||||
15 | } |