Skip to content
This repository has been archived by the owner on Jan 23, 2024. It is now read-only.

Commit

Permalink
Testing CI
Browse files Browse the repository at this point in the history
  • Loading branch information
JarandJR committed Oct 3, 2023
1 parent afd1504 commit bf8dfbf
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions oving5/tests/fuzz_test.c
Original file line number Diff line number Diff line change
Expand Up @@ -9,10 +9,10 @@ int LLVMFuzzerTestOneInput(const uint8_t *data, size_t size) {
memcpy(str, data, size);
str[size] = '\0';

/*char *result =*/ format_string(str);
/*if (result != NULL) {
char *result = format_string(str);
if (result != NULL) {
free(result);
}*/
}

free(str);

Expand Down

0 comments on commit bf8dfbf

Please sign in to comment.