The "object-store-ll.h" header has been introduced to keep transitive header dependendcies and compile times at bay. Now that we have created a new "object-store.c" file though we can easily move the last remaining additional bit of "object-store.h", the `odb_path_map`, out of the header. Do so. As the "object-store.h" header is now equivalent to its low-level alternative we drop the latter and inline it into the former. Signed-off-by: Patrick Steinhardt <ps@pks.im> Signed-off-by: Junio C Hamano <gitster@pobox.com>
15 lines
306 B
C
15 lines
306 B
C
#include "git-compat-util.h"
|
|
#include "object-store.h"
|
|
#include "packfile.h"
|
|
|
|
int LLVMFuzzerTestOneInput(const uint8_t *data, size_t size);
|
|
|
|
int LLVMFuzzerTestOneInput(const uint8_t *data, size_t size)
|
|
{
|
|
struct packed_git p;
|
|
|
|
load_idx("fuzz-input", GIT_SHA1_RAWSZ, (void *)data, size, &p);
|
|
|
|
return 0;
|
|
}
|