7ef0d62730
Merge commit '1b593e1ea4d2af0f6444d9a7788d5d99abd6fde5' as 'third_party/git'
14 lines
309 B
C
14 lines
309 B
C
#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;
|
|
}
|