Skip to content

Commit

Permalink
Also catch SecurityException
Browse files Browse the repository at this point in the history
  • Loading branch information
wtfsck committed May 29, 2014
1 parent 0117924 commit 890947a
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions de4dot.cui/FilesDeobfuscator.cs
Original file line number Diff line number Diff line change
Expand Up @@ -309,6 +309,9 @@ IEnumerable<string> DoDirectoryInfo(SearchDir searchDir, DirectoryInfo di) {
catch (IOException) {
return new List<string>();
}
catch (System.Security.SecurityException) {
return new List<string>();
}
return RecursiveAdd(searchDir, fsinfos);
}

Expand Down

0 comments on commit 890947a

Please sign in to comment.