Set data field to a 1-byte array

This commit is contained in:
de4dot 2012-02-09 10:14:59 +01:00
parent ba399609c7
commit ae97752d9c

View File

@ -188,6 +188,8 @@ namespace de4dot.code.deobfuscators.CodeVeil {
var decompressed = DeobUtils.inflate(info.dataField.InitialValue, true);
reader = new BinaryReader(new MemoryStream(decompressed));
info.dataField.FieldType = module.TypeSystem.Byte;
info.dataField.InitialValue = new byte[1];
}
}
}