Fix arg name

This commit is contained in:
de4dot 2012-08-02 19:53:30 +02:00
parent e496cea7da
commit b455ae8dab

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) {