summaryrefslogtreecommitdiffstats
path: root/ossfuzz/compress_fuzzer.cc
blob: 006a0ab1ce5492b229e5b0887475c0201445d01a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
#include <stddef.h>
#include <stdint.h>
#include <stdlib.h>
#include "lz4.h"

extern "C" 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);

  int result = LZ4_compress_default((const char*)data, dest_buffer,
                                    size, compressed_dest_size);

  if (result == 0)
  {
    abort();
  }

  free(dest_buffer);

  return 0;
}