Skip to content

Commit 70464b9

Browse files
committed
mingw: keep trailing slashes for _wchdir() and readlink()
This is needed so that `_wchdir()` can be used with drive root directories, e.g. C:\ (`_wchdir("C:")` fails to switch the directory to the root directory). This fixes msysgit#359 (in Git for Windows 2.x only, though). Likewise, `readlink()`'s semantics require a trailing slash for symbolic links pointing to directories. Otherwise all checked out symbolic links pointing to directories would be marked as modified even directly after a fresh clone. This fixes #210 Signed-off-by: Johannes Schindelin <[email protected]>
1 parent 13c6798 commit 70464b9

File tree

1 file changed

+0
-3
lines changed

1 file changed

+0
-3
lines changed

compat/mingw.c

-3
Original file line numberDiff line numberDiff line change
@@ -376,9 +376,6 @@ static wchar_t *normalize_ntpath(wchar_t *wbuf)
376376
for (i = 0; wbuf[i]; i++)
377377
if (wbuf[i] == '\\')
378378
wbuf[i] = '/';
379-
/* remove potential trailing slashes */
380-
while (i && wbuf[i - 1] == '/')
381-
wbuf[--i] = 0;
382379
return wbuf;
383380
}
384381

0 commit comments

Comments
 (0)