blob: 150c0f5fa2d7ec2b9dd6a14f6000e5b58b753aa9 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
#include "git-compat-util.h"
#include "packfile.h"
int LLVMFuzzerTestOneInput(const uint8_t *data, size_t size);
int LLVMFuzzerTestOneInput(const uint8_t *data, size_t size)
{
enum object_type type;
unsigned long len;
unpack_object_header_buffer((const unsigned char *)data,
(unsigned long)size, &type, &len);
return 0;
}
|