Staging
v0.5.1
https://github.com/git/git
Revision d966095db01190a2196e31195ea6fa0c722aa732 authored by Junio C Hamano on 18 October 2019, 02:31:00 UTC, committed by Junio C Hamano on 18 October 2019, 02:40:50 UTC
Signed-off-by: Junio C Hamano <gitster@pobox.com>
1 parent 90e0d16
Raw File
Tip revision: d966095db01190a2196e31195ea6fa0c722aa732 authored by Junio C Hamano on 18 October 2019, 02:31:00 UTC
Git 2.24-rc0
Tip revision: d966095
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