another AS2 deobfscation fix

This commit is contained in:
honfika@gmail.com
2014-11-29 11:00:29 +01:00
parent e40d2cb13d
commit 3d092df4ef
2 changed files with 3 additions and 1 deletions

View File

@@ -170,7 +170,7 @@ public class Helper {
} else if (c == '\'') {
ret.append("\\'");
} else if (c < 32) {
ret.append("\\x").append(padZeros(Integer.toHexString(i), 2));
ret.append("\\x").append(padZeros(Integer.toHexString((int) c), 2));
} else {
ret.append(c);
}