Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion BinaryObjectScanner/Scanner.cs
Original file line number Diff line number Diff line change
Expand Up @@ -378,7 +378,7 @@ private ProtectionDictionary GetInternalProtections(string fileName, Stream stre
_ = extractable.Extract(tempPath, _includeDebug);

// Check if any files extracted
if (IOExtensions.SafeGetFiles(tempPath).Length > 0)
if (IOExtensions.SafeGetFiles(tempPath).Length > 0 || IOExtensions.SafeGetDirectories(tempPath).Length > 0)
{
// Scan the output path
var subProtections = GetProtectionsImpl(tempPath, depth + 1);
Expand Down