Skip to content
Snippets Groups Projects
Commit fb866775 authored by clc5q's avatar clc5q
Browse files

Fix initialization order in constructor.

Former-commit-id: 1caad5309e35d2860b859a83f12ebc5a0174848f
parent e4c1acfe
No related branches found
No related tags found
No related merge requests found
......@@ -38,10 +38,10 @@ class STARS_IRDB_Instruction_t : public STARS_Instruction_t
: STARS_Instruction_t(insn->GetBaseID()), irdb_insn(insn), features(0)
{
assert(irdb_insn);
IDAOpcodeCached = false;
irdb_insn->Disassemble(disasm);
bool res=STARS_GetCmd();
assert(res);
IDAOpcodeCached = false;
}
STARS_InstructionID_t GetID() { return irdb_insn->GetBaseID(); }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment