File tree Expand file tree Collapse file tree 1 file changed +3
-1
lines changed
soot-infoflow-android/src/soot/jimple/infoflow/android/entryPointCreators Expand file tree Collapse file tree 1 file changed +3
-1
lines changed Original file line number Diff line number Diff line change 7272import soot .jimple .toolkits .scalar .NopEliminator ;
7373import soot .options .Options ;
7474import soot .tagkit .ExpectedTypeTag ;
75+ import soot .toDex .SootToDexUtils ;
7576import soot .util .HashMultiMap ;
7677import soot .util .MultiMap ;
7778
@@ -264,7 +265,8 @@ protected SootMethod createDummyMainInternal() {
264265 Local classLoader = j .newLocal ("classLoader" , RefType .v ("java.lang.ClassLoader" ));
265266 body .getLocals ().add (classLoader );
266267
267- body .getUnits ().add (j .newAssignStmt (clazzL , ClassConstant .v (dummyClassName )));
268+ body .getUnits ()
269+ .add (j .newAssignStmt (clazzL , ClassConstant .v (SootToDexUtils .getDexClassName (dummyClassName ))));
268270 body .getUnits ().add (j .newAssignStmt (classLoader , j .newVirtualInvokeExpr (clazzL , mrGetClassLoader )));
269271
270272 AssignStmt instantiateCL = j .newAssignStmt (classLoader , j .newVirtualInvokeExpr (factory ,
You can’t perform that action at this time.
0 commit comments