Removed 2 typecasts

This commit is contained in:
AdamKorcz 2020-12-12 19:26:04 +00:00
parent 940a04f4dd
commit f746a28e71
1 changed files with 2 additions and 2 deletions

View File

@ -36,10 +36,10 @@
int LLVMFuzzerTestOneInput(const uint8_t *data, size_t size) {
if((int)size<3)
if(size<3)
return 0;
char *new_str = (char *)malloc(size+1);
char *new_str = malloc(size+1);
if (new_str == NULL)
return 0;