indentation
This commit is contained in:
parent
0440c6708f
commit
f752e9905a
|
@ -460,11 +460,11 @@ public class Capstone {
|
||||||
PointerByReference insnRef = new PointerByReference();
|
PointerByReference insnRef = new PointerByReference();
|
||||||
|
|
||||||
NativeLong c = cs.cs_disasm(ns.csh, code, new NativeLong(code.length), address, new NativeLong(count), insnRef);
|
NativeLong c = cs.cs_disasm(ns.csh, code, new NativeLong(code.length), address, new NativeLong(count), insnRef);
|
||||||
|
|
||||||
if (0 == c.intValue()) {
|
if (0 == c.intValue()) {
|
||||||
return null;
|
return null;
|
||||||
}
|
}
|
||||||
|
|
||||||
Pointer p = insnRef.getValue();
|
Pointer p = insnRef.getValue();
|
||||||
_cs_insn byref = new _cs_insn(p);
|
_cs_insn byref = new _cs_insn(p);
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue