Skip to content

Commit 3f96244

Browse files
committed
PDB detection fix
1 parent 8a06bc1 commit 3f96244

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

db/PE/__GenericHeuristicAnalysis_By_DosX.7.sg

+1-1
Original file line numberDiff line numberDiff line change
@@ -2281,7 +2281,7 @@ function scanForDebugData_NET_and_Native() { // For .NET and Native apps
22812281

22822282
var pdbTextType = String();
22832283

2284-
if (pdbPath && !isPdbFullPathPresent) {
2284+
if (pdbPath && pdbPath[0] !== '.' && !isPdbFullPathPresent) {
22852285
pdbTextType = validateSignature("00 52 53 44 53") ? "Embedded" : "Portable";
22862286

22872287
log(logType.any, pdbTextType + " PDB name: \"" + pdbPath + "\"");

0 commit comments

Comments
 (0)