Skip to content

Commit

Permalink
One freshLocalName call was missing
Browse files Browse the repository at this point in the history
  • Loading branch information
MarcMil committed Oct 10, 2024
1 parent b522c59 commit 5e5a50e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main/java/soot/dexpler/DexBody.java
Original file line number Diff line number Diff line change
Expand Up @@ -1072,7 +1072,7 @@ public void convertFloatsAndDoubles(Body b, final Jimple jimple) {
} else if (isFloat) {
if (!(c.getType() instanceof FloatType)) {
if (convFloat[idxConvVar] == null) {
convFloat[idxConvVar] = jimple.newLocal(("lclConvToFloat" + idxConvVar), FloatType.v());
convFloat[idxConvVar] = jimple.newLocal(freshLocalName("lclConvToFloat" + idxConvVar), FloatType.v());
b.getLocals().add(convFloat[idxConvVar]);
}
units.insertBefore(
Expand Down

0 comments on commit 5e5a50e

Please sign in to comment.