Revision c5a8f1efc03746fd6b6c71fef8e3a5c38ce4e2e8 authored by Junio C Hamano on 29 September 2020, 21:01:19 UTC, committed by Junio C Hamano on 29 September 2020, 21:01:20 UTC
More FAQ entries.

* bc/faq-misc:
  docs: explain how to deal with files that are always modified
  docs: explain why reverts are not always applied on merge
  docs: explain why squash merges are broken with long-running branches
2 parent s 9bc233a + 087c616
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