Ignore prefixes

This commit is contained in:
de4dot 2012-01-24 02:31:57 +01:00
parent 8a70b4a8c4
commit 2c8e685910

View File

@ -148,7 +148,10 @@ namespace de4dot.code.deobfuscators.DeepSea {
break;
default:
return false;
if (instr.OpCode.OpCodeType != OpCodeType.Prefix)
return false;
index++;
break;
}
}
checkInline: