Skip to content

Commit 5e1f948

Browse files
authored
Fix condition in notifyFlowOut call
1 parent a0a3dd8 commit 5e1f948

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

soot-infoflow/src/soot/jimple/infoflow/handlers/SequentialTaintPropagationHandler.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@ public boolean notifyFlowOut(Unit stmt, Abstraction d1, Abstraction incoming, Se
6969

7070
boolean killed = false;
7171
for (TaintPropagationHandler handler : innerHandlers) {
72-
if (!handler.notifyFlowOut(stmt, d1, incoming, outgoing, manager, type))
72+
if (handler.notifyFlowOut(stmt, d1, incoming, outgoing, manager, type))
7373
killed = true;
7474
}
7575
return killed;

0 commit comments

Comments
 (0)