#910 Missing "add" instruction in obfuscated code (obfuscated u30, u32, s32 reading fix)

This commit is contained in:
honfika@gmail.com
2015-06-03 21:00:24 +02:00
parent 6b5fc8fc2d
commit 75ce6c72fa
5 changed files with 7 additions and 5 deletions

View File

@@ -114,7 +114,7 @@ public class ASMSourceEditorPane extends LineMarkedEditorPane implements CaretLi
changeContentType("text/plain");
if (textHexOnly == null) {
HighlightedTextWriter writer = new HighlightedTextWriter(Configuration.getCodeFormatting(), true);
Helper.byteArrayToHexWithHeader(writer, abc.bodies.get(bodyIndex).getCode().getBytes());
Helper.byteArrayToHexWithHeader(writer, abc.bodies.get(bodyIndex).getCodeBytes());
textHexOnly = new HighlightedText(writer);
}
setText(textHexOnly);