You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

17 lines
399 B

#include "include/sparse/sparse.h"
extern "C" int LLVMFuzzerTestOneInput(const uint8_t* data, size_t size) {
if (size < 2 * sizeof(wchar_t)) return 0;
int64_t blocksize = 4096;
struct sparse_file* file = sparse_file_new(size, blocksize);
if (!file) {
return 0;
}
unsigned int block = 1;
sparse_file_add_data(file, &data, size, block);
sparse_file_destroy(file);
return 0;
}