diff options
| author | van Hauser <vh@thc.org> | 2021-01-08 15:43:13 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2021-01-08 15:43:13 +0100 |
| commit | 20a47cb23e9c6406b4a6c0c94783667a8b06316a (patch) | |
| tree | 1aeeb9555be23bb55b888e134e5ca50929387236 /instrumentation/MarkNodes.cc | |
| parent | 7b8c8cf12fde0feab25a1d794e010a5778cf9be8 (diff) | |
| parent | 813627cbd32be9466e0b5ad3a83ce8209dcfeb51 (diff) | |
| download | afl++-20a47cb23e9c6406b4a6c0c94783667a8b06316a.tar.gz | |
Merge pull request #679 from AFLplusplus/dev
Dev
Diffstat (limited to 'instrumentation/MarkNodes.cc')
| -rw-r--r-- | instrumentation/MarkNodes.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/instrumentation/MarkNodes.cc b/instrumentation/MarkNodes.cc index 20a7df35..b77466d9 100644 --- a/instrumentation/MarkNodes.cc +++ b/instrumentation/MarkNodes.cc @@ -332,11 +332,11 @@ bool Indistinguish(uint32_t node1, uint32_t node2) { void MakeUniq(uint32_t now) { - bool StopFlag = false; if (Marked.find(now) == Marked.end()) { for (uint32_t pred1 : t_Pred[now]) { + bool StopFlag = false; for (uint32_t pred2 : t_Pred[now]) { if (pred1 == pred2) continue; |
