1
0
Fork 0

Fixed uninitialized var with opcode grouping

This commit is contained in:
torusrxxx 2018-10-24 18:54:26 +08:00
parent 25b154b2cf
commit d316405f11
No known key found for this signature in database
GPG Key ID: A795C73A0F1CFADD
1 changed files with 5 additions and 0 deletions

View File

@ -294,6 +294,11 @@ Instruction_t QBeaEngine::DecodeDataAt(byte_t* data, duint size, duint origBase,
wInst.branchType = Instruction_t::None;
wInst.branchDestination = 0;
wInst.tokens = cap;
wInst.prefixSize = 0;
wInst.opcodeSize = len;
wInst.group1Size = 0;
wInst.group2Size = 0;
wInst.group3Size = 0;
return wInst;
}