We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5cfbe36 commit 22b8077Copy full SHA for 22b8077
soot-infoflow/src/soot/jimple/infoflow/taintWrappers/EasyTaintWrapper.java
@@ -186,7 +186,7 @@ public EasyTaintWrapper(EasyTaintWrapper taintWrapper) {
186
@Override
187
public Set<AccessPath> getTaintsForMethodInternal(Stmt stmt, AccessPath taintedPath) {
188
if (!stmt.containsInvokeExpr())
189
- Collections.singleton(taintedPath);
+ return Collections.singleton(taintedPath);
190
191
final Set<AccessPath> taints = new HashSet<AccessPath>();
192
final SootMethod method = stmt.getInvokeExpr().getMethod();
0 commit comments