Skip to content
Snippets Groups Projects
Commit a9818cd5 authored by Jason Hiser's avatar Jason Hiser :tractor:
Browse files

sanity check inputs from server sooner

parent b35e4910
No related branches found
No related tags found
No related merge requests found
Pipeline #4733 failed
......@@ -73,6 +73,12 @@ int32_t AflFuzz_t::getAllInputs()
return 1;
}
if(yaml["files"].size()!=1)
{
cout <<"Cannot flatten files of: " << endl;
cout << yaml << endl;
return 1;
}
auto input_files = FlatInput_t();
for(auto file : yaml["files"])
{
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment