copy_absolute(): keep the relative path if _wgetcwd() failed

Instead of using the undefined content of the 'path' buffer.
This commit is contained in:
Victor Stinner 2010-10-07 23:39:04 +00:00
parent 918616ce91
commit 08538bc579

View File

@ -300,7 +300,11 @@ copy_absolute(wchar_t *path, wchar_t *p)
if (p[0] == SEP)
wcscpy(path, p);
else {
_wgetcwd(path, MAXPATHLEN);
if (!_wgetcwd(path, MAXPATHLEN)) {
/* unable to get the current directory */
wcscpy(path, p);
return;
}
if (p[0] == '.' && p[1] == SEP)
p += 2;
joinpath(path, p);