diff options
author | Thorsten Kukuk <kukuk@thkukuk.de> | 2009-03-27 10:46:11 +0000 |
---|---|---|
committer | Thorsten Kukuk <kukuk@thkukuk.de> | 2009-03-27 10:46:11 +0000 |
commit | 5182ea70c8425d302c31386a325b869fcfef9671 (patch) | |
tree | 154c0580e75b0ed772c9260f4d009dfdcf7c3f7b /modules/pam_ftp | |
parent | fd1b9361a937f8b565d0d55179da359122e1fc96 (diff) | |
download | pam-5182ea70c8425d302c31386a325b869fcfef9671.tar.gz pam-5182ea70c8425d302c31386a325b869fcfef9671.tar.bz2 pam-5182ea70c8425d302c31386a325b869fcfef9671.zip |
Relevant BUGIDs:
Purpose of commit: bugfix
Commit summary:
---------------
2009-03-27 Thorsten Kukuk <kukuk@thkukuk.de>
* modules/pam_unix/support.c (_unix_run_helper_binary): Don't
ignore return value of write().
* libpamc/include/security/pam_client.h (PAM_BP_ASSERT): Honour
NDEBUG.
* modules/pam_timestamp/pam_timestamp.c: don't ignore return
values of lchown and fchown.
Diffstat (limited to 'modules/pam_ftp')
-rw-r--r-- | modules/pam_ftp/pam_ftp.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/pam_ftp/pam_ftp.c b/modules/pam_ftp/pam_ftp.c index a124795b..896a1dda 100644 --- a/modules/pam_ftp/pam_ftp.c +++ b/modules/pam_ftp/pam_ftp.c @@ -79,7 +79,7 @@ static int lookup(const char *name, const char *list, const char **_user) if (list && *list) { const char *l; char *list_copy, *x; - char *sptr; + char *sptr = NULL; list_copy = x_strdup(list); x = list_copy; |