diff options
author | hexcoder- <heiko@hexco.de> | 2021-01-04 18:11:51 +0100 |
---|---|---|
committer | hexcoder- <heiko@hexco.de> | 2021-01-04 18:11:51 +0100 |
commit | b7cd6d4035f18a50fd664eb8bb3829e9a4aeb9c3 (patch) | |
tree | abe6e19f65f60f3fbc0f51ebcb3776343171ea28 /instrumentation/MarkNodes.cc | |
parent | 1842c8390f828ee4e453cf43fc8e7b82e287d22f (diff) | |
download | afl++-b7cd6d4035f18a50fd664eb8bb3829e9a4aeb9c3.tar.gz |
code cleanup
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; |