about summary refs log tree commit diff
path: root/instrumentation/MarkNodes.cc
diff options
context:
space:
mode:
authorhexcoder- <heiko@hexco.de>2021-01-04 18:11:51 +0100
committerhexcoder- <heiko@hexco.de>2021-01-04 18:11:51 +0100
commitb7cd6d4035f18a50fd664eb8bb3829e9a4aeb9c3 (patch)
treeabe6e19f65f60f3fbc0f51ebcb3776343171ea28 /instrumentation/MarkNodes.cc
parent1842c8390f828ee4e453cf43fc8e7b82e287d22f (diff)
downloadafl++-b7cd6d4035f18a50fd664eb8bb3829e9a4aeb9c3.tar.gz
code cleanup
Diffstat (limited to 'instrumentation/MarkNodes.cc')
-rw-r--r--instrumentation/MarkNodes.cc2
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;