Revision 14fe4af084071803ab4f16e6841ff64ba7351071 authored by Junio C Hamano on 02 August 2019, 20:12:03 UTC, committed by Junio C Hamano on 02 August 2019, 20:12:03 UTC
Doc update.

* sg/fsck-config-in-doc:
  Documentation/git-fsck.txt: include fsck.* config variables
2 parent s c62bc49 + d61e6ce
Raw File
fuzz-pack-idx.c
#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;
}
back to top