Skip to content

Commit 20bff15

Browse files
committed
Fix bug with interface calls
1 parent cafb7cd commit 20bff15

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

soot-infoflow/src/soot/jimple/infoflow/util/SootUtils.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -44,8 +44,8 @@ public static List<Value> getUseAndDefValues(Unit u) {
4444
*/
4545
public static SootMethod findMethod(SootClass currentClass, String subsignature) {
4646
Scene sc = Scene.v();
47-
return sc.getOrMakeFastHierarchy().resolveConcreteDispatch(currentClass,
48-
sc.makeMethodRef(currentClass, subsignature, false));
47+
return sc.getOrMakeFastHierarchy().resolveMethod(currentClass,
48+
sc.makeMethodRef(currentClass, subsignature, false), true);
4949
}
5050

5151
}

0 commit comments

Comments
 (0)