Differences From Artifact [583614e3b0]:
- File win/tclWinTest.c — part of check-in [4d9717c8ef] at 2020-03-17 01:20:01 on branch trunk — merge 8.7 (user: dgp size: 16536) [more...]
To Artifact [d6ee2addd5]:
- File win/tclWinTest.c — part of check-in [d652d14132] at 2020-03-22 21:28:01 on branch trunk — Merge 8.7 (user: jan.nijtmans size: 16536) [more...]
| ︙ | ︙ | |||
423 424 425 426 427 428 429 |
attr = GetFileAttributesA(nativePath);
/*
* nativePath not found
*/
| | | 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 |
attr = GetFileAttributesA(nativePath);
/*
* nativePath not found
*/
if (attr == 0xFFFFFFFF) {
res = -1;
goto done;
}
/*
* If nativePath is not a directory, there is no special handling.
*/
|
| ︙ | ︙ |