diff options
author | Jeremy Allison <jra@samba.org> | 2011-06-01 16:07:24 -0700 |
---|---|---|
committer | Jeremy Allison <jra@samba.org> | 2011-06-01 16:07:42 -0700 |
commit | 388bba05cf2bf3674831409d781a65c1f90292fa (patch) | |
tree | 715ac86c5ec3a8091d8f5a27d99ff21519b740ea | |
parent | c06a31dd65900f183e880cb5d135584aecbcc479 (diff) | |
download | samba-388bba05cf2bf3674831409d781a65c1f90292fa.tar.gz |
Remove a PATH_MAX.
-rw-r--r-- | nsswitch/pam_winbind.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/nsswitch/pam_winbind.c b/nsswitch/pam_winbind.c index f7637e7ea70..7d5b70e1bdf 100644 --- a/nsswitch/pam_winbind.c +++ b/nsswitch/pam_winbind.c @@ -1212,7 +1212,7 @@ out: static void _pam_setup_krb5_env(struct pwb_context *ctx, struct wbcLogonUserInfo *info) { - char var[PATH_MAX]; + char *var = NULL; int ret; uint32_t i; const char *krb5ccname = NULL; @@ -1239,7 +1239,7 @@ static void _pam_setup_krb5_env(struct pwb_context *ctx, _pam_log_debug(ctx, LOG_DEBUG, "request returned KRB5CCNAME: %s", krb5ccname); - if (snprintf(var, sizeof(var), "KRB5CCNAME=%s", krb5ccname) == -1) { + if (asprintf(&var, "KRB5CCNAME=%s", krb5ccname) == -1) { return; } @@ -1249,6 +1249,7 @@ static void _pam_setup_krb5_env(struct pwb_context *ctx, "failed to set KRB5CCNAME to %s: %s", var, pam_strerror(ctx->pamh, ret)); } + free(var); } /** |