Revert "fuzzers/load: clear old temp files if they exist"

It is not a problem, so revert.

This reverts commit 06ec0319db.
This commit is contained in:
Kacper Michajłow 2024-05-24 16:53:33 +02:00
parent 7923a633a0
commit f652f38147
1 changed files with 0 additions and 7 deletions

View File

@ -26,13 +26,6 @@
#include "common.h"
int LLVMFuzzerInitialize(int *argc, char ***argv)
{
// Is /tmp really persistent?
system("rm -f /tmp/libfuzzer.*");
return 0;
}
int LLVMFuzzerTestOneInput(const uint8_t *data, size_t size)
{
// fmemopen doesn't have associated file descriptor, so we do copy.