lz4/ossfuzz/compress_fuzzer.c

26 lines
677 B
C
Raw Normal View History

#include <stddef.h>
#include <stdint.h>
#include <stdlib.h>
#include "lz4.h"
#define CHECK(COND) if (!(COND)) { abort(); }
int LLVMFuzzerTestOneInput(const uint8_t *data, size_t size)
{
size_t const compressed_dest_size = LZ4_compressBound(size);
char *const dest_buffer = (char *)malloc(compressed_dest_size);
2019-06-29 07:23:06 +08:00
CHECK(dest_buffer != NULL);
2019-06-29 07:23:06 +08:00
// Allocation succeeded, try compressing the incoming data.
int result = LZ4_compress_default((const char*)data,
dest_buffer,
size,
compressed_dest_size);
CHECK(result != 0);
free(dest_buffer);
return 0;
}