diff options
author | Simo Sorce <idra@samba.org> | 2006-11-14 16:50:29 +0000 |
---|---|---|
committer | Gerald (Jerry) Carter <jerry@samba.org> | 2007-10-10 12:15:48 -0500 |
commit | b903eb231a1db429dca2120e392d49284e284bd3 (patch) | |
tree | 11de5d37b6dffca814b9a0e5e6871cbe2de725cf /source3/nsswitch | |
parent | 4d12d3a5c82b95df15743353c1f6fa31d64b4ec5 (diff) | |
download | samba-b903eb231a1db429dca2120e392d49284e284bd3.tar.gz samba-b903eb231a1db429dca2120e392d49284e284bd3.tar.bz2 samba-b903eb231a1db429dca2120e392d49284e284bd3.zip |
r19703: Don't free a string if you want to return it!
(This used to be commit 3fed72ac3efd1fa7df8fb7d1e2cb9772d66bb4bd)
Diffstat (limited to 'source3/nsswitch')
-rw-r--r-- | source3/nsswitch/pam_winbind.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/source3/nsswitch/pam_winbind.c b/source3/nsswitch/pam_winbind.c index 0729fda62b..1d9053ff3e 100644 --- a/source3/nsswitch/pam_winbind.c +++ b/source3/nsswitch/pam_winbind.c @@ -932,7 +932,6 @@ const char *get_conf_item_string(const pam_handle_t *pamh, _pam_log(pamh, ctrl, LOG_INFO, "no \"=\" delimiter for \"%s\" found\n", item); goto out; } - SAFE_FREE(parm); _pam_log_debug(pamh, ctrl, LOG_INFO, "PAM config: %s '%s'\n", item, p+1); return p + 1; } |