summaryrefslogtreecommitdiffstats
path: root/tests/jq_fuzz_parse_stream.c
blob: 5b51c599f7bd9fb56583d0bc398443467eb75377 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
#include <stdint.h>
#include <stdlib.h>
#include <string.h>

#include "jv.h"

int LLVMFuzzerTestOneInput(uint8_t *data, size_t size) {
  // Creat null-terminated string
  char *null_terminated = (char *)malloc(size + 1);
  memcpy(null_terminated, (char *)data, size);
  null_terminated[size] = '\0';

  // Fuzzer entrypoint
  jv res = jv_parse_custom_flags(null_terminated, JV_PARSE_STREAMING);
  jv_free(res);
  
  // Free the null-terminated string
  free(null_terminated);

  return 0;
}