Skip to content

Commit

Permalink
Fixed infinite loops caused by entering reparse points. Fixes issue 11.
Browse files Browse the repository at this point in the history
  • Loading branch information
BillyONeal committed Aug 4, 2013
1 parent c16474c commit ded4cc1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pevLib/mainScanner.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,7 @@ namespace scanners
//add it to the list of directories to search
if (!globalOptions::noSubDirectories)
{
if (currentFile.isDirectory())
if (currentFile.isDirectory() && !currentFile.isReparsePoint())
{
if (globalOptions::logicalTree->directoryCheck(currentFile.getFileName()))
{
Expand Down

0 comments on commit ded4cc1

Please sign in to comment.