Ignore EndOfStreamException

This commit is contained in:
de4dot 2012-02-23 16:23:56 +01:00
parent 538e4f738d
commit ef59ce7824

View File

@ -192,6 +192,9 @@ namespace de4dot.cui {
catch (BadImageFormatException) {
return false; // Not a .NET file
}
catch (EndOfStreamException) {
return false;
}
catch (Exception ex) {
Log.w("Could not load file ({0}): {1}", ex.GetType(), file.Filename);
return false;