Not ignoring all PE file load exceptions, but added null ref exception

This commit is contained in:
de4dot 2011-09-28 02:00:29 +02:00
parent 157a125894
commit 500cdcaf1b

View File

@ -167,9 +167,12 @@ namespace de4dot {
catch (BadImageFormatException) {
return; // Not a .NET file
}
catch (Exception ex) {
Log.w("Could not load file: {0}. Use -v to see stack trace.", file.Filename);
Utils.printStackTrace(ex, Log.LogLevel.verbose);
catch (NullReferenceException) {
Log.w("Could not load file: {0}", file.Filename);
return;
}
catch (IOException) {
Log.w("Could not load file: {0}", file.Filename);
return;
}