Skip to content

Commit

Permalink
Fix NRE when already analyzed database was not existing
Browse files Browse the repository at this point in the history
  • Loading branch information
ktos committed Oct 27, 2019
1 parent d1342fb commit 4b07aad
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions src/Program.cs
Original file line number Diff line number Diff line change
Expand Up @@ -159,6 +159,7 @@ private static void LoadAlreadyAnalyzed()

if (!File.Exists(AnalyzedDatabasePath))
{
analyzed = new HashSet<int>();
}
else
{
Expand Down

0 comments on commit 4b07aad

Please sign in to comment.