diff options
Diffstat (limited to 'modules/pam_namespace/pam_namespace.c')
-rw-r--r-- | modules/pam_namespace/pam_namespace.c | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/modules/pam_namespace/pam_namespace.c b/modules/pam_namespace/pam_namespace.c index 4b62700d..b0bc138b 100644 --- a/modules/pam_namespace/pam_namespace.c +++ b/modules/pam_namespace/pam_namespace.c @@ -1778,9 +1778,10 @@ cleanup: static int cwd_in(char *dir, struct instance_data *idata) { int retval = 0; - char cwd[PATH_MAX]; + char *cwd; - if (getcwd(cwd, PATH_MAX) == NULL) { + cwd = xgetcwd(); + if (cwd == NULL) { pam_syslog(idata->pamh, LOG_ERR, "Can't get current dir, %m"); return -1; } @@ -1794,6 +1795,7 @@ static int cwd_in(char *dir, struct instance_data *idata) pam_syslog(idata->pamh, LOG_DEBUG, "cwd is outside %s", dir); } + free(cwd); return retval; } |