Merge branch 'master' into confuser

This commit is contained in:
de4dot 2012-08-02 19:53:36 +02:00
commit 4800755e47

View File

@ -156,12 +156,12 @@ namespace de4dot.code.deobfuscators {
}
}
public static byte[] inflate(byte[] data, bool hasHeader) {
return inflate(data, 0, data.Length, hasHeader);
public static byte[] inflate(byte[] data, bool noHeader) {
return inflate(data, 0, data.Length, noHeader);
}
public static byte[] inflate(byte[] data, int start, int len, bool hasHeader) {
return inflate(data, start, len, new Inflater(hasHeader));
public static byte[] inflate(byte[] data, int start, int len, bool noHeader) {
return inflate(data, start, len, new Inflater(noHeader));
}
public static byte[] inflate(byte[] data, Inflater inflater) {