ENH: check return value of GetLongPath
This commit is contained in:
parent
f50e904faf
commit
be32b258cb
|
@ -2247,7 +2247,11 @@ kwsys_stl::string SystemTools::GetActualCaseForPath(const char* p)
|
||||||
return path;
|
return path;
|
||||||
}
|
}
|
||||||
char buffer[MAX_PATH+1];
|
char buffer[MAX_PATH+1];
|
||||||
::GetLongPathName(path.c_str(), buffer, MAX_PATH+1);
|
int len = ::GetLongPathName(path.c_str(), buffer, MAX_PATH+1);
|
||||||
|
if(len == 0 || len > MAX_PATH+1)
|
||||||
|
{
|
||||||
|
return path;
|
||||||
|
}
|
||||||
return buffer;
|
return buffer;
|
||||||
#endif
|
#endif
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue