mirror of
https://github.com/git/git
synced 2024-11-05 18:59:29 +00:00
6713bfc70c
In order to provide a better organisation for oss-fuzz fuzzers and to avoid top-level clustters in the git repository when more fuzzers are introduced, move the existing fuzzer-related sources to their own oss-fuzz/ hierarchy. Grouping the fuzzers into their own directory, separate their application on fuzz-testing from the core functionalities of the git code, prvides better and tidier structure the oss-fuzz fuzzing library to manage, locate, build and execute those fuzzers for fuzz-testing purposes in future development. Signed-off-by: Arthur Chan <arthur.chan@adalogics.com> Signed-off-by: Junio C Hamano <gitster@pobox.com>
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;
|
|
}
|