summaryrefslogtreecommitdiffstats
path: root/winsup/cygwin/path.cc
diff options
context:
space:
mode:
Diffstat (limited to 'winsup/cygwin/path.cc')
-rw-r--r--winsup/cygwin/path.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/winsup/cygwin/path.cc b/winsup/cygwin/path.cc
index 3bcea3562..cffbecebd 100644
--- a/winsup/cygwin/path.cc
+++ b/winsup/cygwin/path.cc
@@ -3017,9 +3017,9 @@ chdir (const char *in_dir)
return -1;
}
- /* Convert path. Third argument ensures that we don't check for NULL/empty/invalid
+ /* Convert path. First argument ensures that we don't check for NULL/empty/invalid
again. */
- path_conv path (dir, PC_FULL | PC_SYM_FOLLOW, NULL);
+ path_conv path (PC_NONULLEMPTY, dir, PC_FULL | PC_SYM_FOLLOW);
if (path.error)
{
set_errno (path.error);