Skip to content

Commit

Permalink
Fix call
Browse files Browse the repository at this point in the history
Signed-off-by: Arthur Chan <[email protected]>
  • Loading branch information
arthurscchan committed Jan 15, 2024
1 parent 0eac08c commit 9f56c21
Showing 1 changed file with 2 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,7 @@ public static void addConstructors(FunctionConfig methodList, SootClass sootClas
FunctionElement element = new FunctionElement();
element.setFunctionName(name);
element.setBaseInformation(method);
element.setJavaMethodInfo(method);
element.setJavaMethodInfo(method, true);

eList.add(element);
}
Expand All @@ -107,9 +107,7 @@ public static void addSinkMethods(
FunctionElement element = new FunctionElement();
element.setFunctionName("[" + cl.getName() + "]." + method.getSubSignature().split(" ")[1]);
element.setBaseInformation(method);
if (isAutoFuzz) {
element.setJavaMethodInfo(method);
}
element.setJavaMethodInfo(method, isAutoFuzz);

eList.add(element);
}
Expand Down

0 comments on commit 9f56c21

Please sign in to comment.