This website works better with JavaScript.
Home
Explore
Sign In
mahta.fetrat
/
HomoFast-eSpeak-Persian
Watch
1
Star
0
Fork
0
Code
Issues
0
Pull Requests
0
Releases
0
Wiki
Activity
Browse Source
Release the memory in text in fuzzrunner.c.
master
Reece H. Dunn
7 years ago
parent
dfe66289c8
commit
7dbf87255d
1 changed files
with
2 additions
and
0 deletions
Split View
Show Diff Stats
2
0
tests/fuzzrunner.c
+ 2
- 0
tests/fuzzrunner.c
View File
@@ -49,7 +49,9 @@ int main(int argc, char **argv) {
fread(text, 1, filesize, stream);
text[filesize] = 0;
fclose(stream);
LLVMFuzzerTestOneInput(text, filesize);
free(text);
}
return EXIT_SUCCESS;
Write
Preview
Loading…
Cancel
Save