Skip to content

Commit

Permalink
Merge pull request #4 from secure-software-engineering/develop
Browse files Browse the repository at this point in the history
Phantom methods are skipped now as sanitizers during query execution.
  • Loading branch information
arktt authored Nov 17, 2020
2 parents 51b9868 + 034392d commit 177781b
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -294,7 +294,7 @@ private Map<SootMethod, Body> setEmptySootBodies(List<Method> methods){

for (Method method : methods) {
SootMethod sootMethod = Utility.getSootMethod(method);
if (sootMethod != null) {
if (sootMethod != null && !sootMethod.isPhantom()) {
Body body = sootMethod.getActiveBody();
if (body != null) {
oldBodies.put(sootMethod, body);
Expand Down

0 comments on commit 177781b

Please sign in to comment.