mirror of
https://github.com/janet-lang/janet
synced 2025-01-25 14:46:52 +00:00
Use make format.
This commit is contained in:
parent
fbe903b277
commit
e202d30835
@ -2,9 +2,9 @@
|
||||
#include <string.h>
|
||||
#include <janet.h>
|
||||
|
||||
int LLVMFuzzerTestOneInput(const uint8_t *data, size_t size){
|
||||
char *new_str = (char *)malloc(size+1);
|
||||
if (new_str == NULL){
|
||||
int LLVMFuzzerTestOneInput(const uint8_t *data, size_t size) {
|
||||
char *new_str = (char *)malloc(size + 1);
|
||||
if (new_str == NULL) {
|
||||
return 0;
|
||||
}
|
||||
memcpy(new_str, data, size);
|
||||
|
Loading…
Reference in New Issue
Block a user