Browse Source

Fix ILSpy not being able to open ZIP files/VSIX that contain a bundle signature.

natural-type-lambdas-methods
Siegfried Pammer 1 year ago
parent
commit
b5d2fd1694
  1. 4
      ICSharpCode.ILSpyX/LoadedPackage.cs

4
ICSharpCode.ILSpyX/LoadedPackage.cs

@ -123,6 +123,10 @@ namespace ICSharpCode.ILSpyX @@ -123,6 +123,10 @@ namespace ICSharpCode.ILSpyX
view = null; // don't dispose the view, we're still using it in the bundle entries
return result;
}
catch (InvalidDataException)
{
return null;
}
finally
{
view?.Dispose();

Loading…
Cancel
Save