mirror of
https://github.com/python/cpython.git
synced 2025-01-23 17:44:35 +08:00
copy_absolute(): keep the relative path if _wgetcwd() failed
Instead of using the undefined content of the 'path' buffer.
This commit is contained in:
parent
918616ce91
commit
08538bc579
@ -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);
|
||||
|
Loading…
Reference in New Issue
Block a user