Browse Source

WholeProjectDecompiler: set segment length for Unix to 255.

pull/2567/head
Siegfried Pammer 3 years ago
parent
commit
37456672d7
  1. 2
      ICSharpCode.Decompiler/CSharp/ProjectDecompiler/WholeProjectDecompiler.cs

2
ICSharpCode.Decompiler/CSharp/ProjectDecompiler/WholeProjectDecompiler.cs

@ -547,7 +547,7 @@ namespace ICSharpCode.Decompiler.CSharp.ProjectDecompiler @@ -547,7 +547,7 @@ namespace ICSharpCode.Decompiler.CSharp.ProjectDecompiler
{
case PlatformID.MacOSX:
case PlatformID.Unix:
return (true, int.MaxValue, int.MaxValue);
return (true, int.MaxValue, 255);
case PlatformID.Win32NT:
const string key = @"SYSTEM\CurrentControlSet\Control\FileSystem";
var fileSystem = Registry.LocalMachine.OpenSubKey(key);

Loading…
Cancel
Save