summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/main.cpp10
1 files changed, 10 insertions, 0 deletions
diff --git a/src/main.cpp b/src/main.cpp
index 2273c33..f0c3b6f 100644
--- a/src/main.cpp
+++ b/src/main.cpp
@@ -62,6 +62,16 @@ void makefullpath(TCHAR* pdbname)
TCHAR fullname[260];
TCHAR* pfullname = fullname;
+ if (!pdbname || T_strlen(pdbname) < 2)
+ {
+ return;
+ }
+ // If the path starts with "\\\\", it is considered to be a full path, such as UNC path, VolumeGUID path: "\\\\?\\Volume"
+ if (pdbname[0] == '\\' && pdbname[1] == '\\')
+ {
+ return;
+ }
+
int drive = 0;
if (pdbname[0] && pdbname[1] == ':')
{