In the preceding commits we have renamed the structures contained in
"object-store.h" to `struct object_database` and `struct odb_backend`.
As such, the code files "object-store.{c,h}" are confusingly named now.
Rename them to "odb.{c,h}" accordingly.
Signed-off-by: Patrick Steinhardt <ps@pks.im>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
15 lines
297 B
C
15 lines
297 B
C
#include "git-compat-util.h"
|
|
#include "odb.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;
|
|
}
|