Use new getInitializedUInt32Array() method

This commit is contained in:
de4dot 2012-02-05 18:56:05 +01:00
parent c8c4e3341c
commit 191fbb84b0

View File

@ -169,13 +169,10 @@ namespace de4dot.code.deobfuscators.CodeVeil {
continue;
i++;
var ary = ArrayFinder.getInitializedInt32Array(4, method, ref i);
if (ary == null)
var key = ArrayFinder.getInitializedUInt32Array(4, method, ref i);
if (key == null)
continue;
var key = new uint[4];
for (int j = 0; j < key.Length; j++)
key[j] = (uint)ary[j];
return key;
}
return null;