removed warning in afl-gcc-pass.so.cc

This commit is contained in:
van Hauser
2020-03-09 11:23:29 +01:00
parent df74edeb45
commit c159b872ef

View File

@ -567,7 +567,7 @@ int plugin_init(struct plugin_name_args * plugin_info,
std::string line; std::string line;
std::ifstream fileStream; std::ifstream fileStream;
fileStream.open(instWhiteListFilename); fileStream.open(instWhiteListFilename);
if (!fileStream) fatal_error(0, "Unable to open AFL_GCC_WHITELIST"); if (!fileStream) PFATAL("Unable to open AFL_GCC_WHITELIST");
getline(fileStream, line); getline(fileStream, line);
while (fileStream) { while (fileStream) {