Do not modify $PWD

This commit is contained in:
Arun Prakash Jana 2021-08-12 10:46:12 +05:30
parent 42061b0399
commit fc00faf7d0
No known key found for this signature in database
GPG Key ID: A75979F35C080412
1 changed files with 3 additions and 2 deletions

View File

@ -8315,8 +8315,9 @@ int main(int argc, char *argv[])
session = NULL;
} else if (argc == optind) {
/* Start in the current directory */
initpath = getenv("PWD");
initpath = initpath ? xstrdup(initpath) : getcwd(NULL, 0);
char *startpath = getenv("PWD");
initpath = startpath ? xstrdup(startpath) : getcwd(NULL, 0);
if (!initpath)
initpath = "/";
} else {