From b245ab336ef0cef374b36d0fa4be432b3e6afcd2 Mon Sep 17 00:00:00 2001 From: Kostya Serebryany Date: Thu, 19 Jul 2018 01:23:32 +0000 Subject: [libFuzzer] first experimental attempt at DFT-based mutations (DFT=data-flow-trace) git-svn-id: https://llvm.org/svn/llvm-project/compiler-rt/trunk@337434 91177308-0d34-0410-b5e6-96231b3b80d8 --- lib/fuzzer/FuzzerDataFlowTrace.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'lib/fuzzer/FuzzerDataFlowTrace.cpp') diff --git a/lib/fuzzer/FuzzerDataFlowTrace.cpp b/lib/fuzzer/FuzzerDataFlowTrace.cpp index 114034c5b..764f3e49f 100644 --- a/lib/fuzzer/FuzzerDataFlowTrace.cpp +++ b/lib/fuzzer/FuzzerDataFlowTrace.cpp @@ -67,7 +67,7 @@ void DataFlowTrace::Init(const std::string &DirPath, const char *End = L.c_str() + L.size(); assert(Beg < End); size_t Len = End - Beg; - Vector V(Len); + Vector V(Len); for (size_t I = 0; I < Len; I++) { if (Beg[I] != '0' && Beg[I] != '1') ParseError("the trace should contain only 0 or 1"); -- cgit v1.2.1