diff options
Diffstat (limited to 'winsup/cygwin/path.cc')
-rw-r--r-- | winsup/cygwin/path.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/winsup/cygwin/path.cc b/winsup/cygwin/path.cc index fd4973f12..9b9d37e06 100644 --- a/winsup/cygwin/path.cc +++ b/winsup/cygwin/path.cc @@ -620,7 +620,7 @@ normalize_posix_path (const char *cwd, const char *src, char *dst) } } if (dst > (dst_start + 1) && dst[-1] == '.' && SLASH_P (dst[-2])) - dst -= 2; + dst -= dst[2] ? 2 : 1; *dst = 0; debug_printf ("%s = normalize_posix_path (%s)", dst_start, src_start); return 0; |