15 lines
		
	
	
		
			309 B
		
	
	
	
		
			C
		
	
	
			
		
		
	
	
			15 lines
		
	
	
		
			309 B
		
	
	
	
		
			C
		
	
	
| #include "git-compat-util.h"
 | |
| #include "object-store-ll.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;
 | |
| }
 |