提交 f746a28e 编写于 作者: A AdamKorcz

Removed 2 typecasts

上级 940a04f4
......@@ -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;
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册