diff options
author | des <des@FreeBSD.org> | 2002-12-16 15:28:05 +0000 |
---|---|---|
committer | des <des@FreeBSD.org> | 2002-12-16 15:28:05 +0000 |
commit | 9c13a1ee5f744e6c21ae65cb3ed17e00d241a72f (patch) | |
tree | ecbdd15371b5e36058a6a262d89a55baf407a91c /contrib/openpam/lib/pam_set_data.c | |
parent | 7966ff24b5238d36ecd0fce943ba5db101374b4e (diff) | |
parent | 18c136aadd659f7b141653f3f614063e70bc59eb (diff) | |
download | FreeBSD-src-9c13a1ee5f744e6c21ae65cb3ed17e00d241a72f.zip FreeBSD-src-9c13a1ee5f744e6c21ae65cb3ed17e00d241a72f.tar.gz |
This commit was generated by cvs2svn to compensate for changes in r107937,
which included commits to RCS files with non-trunk default branches.
Diffstat (limited to 'contrib/openpam/lib/pam_set_data.c')
-rw-r--r-- | contrib/openpam/lib/pam_set_data.c | 15 |
1 files changed, 7 insertions, 8 deletions
diff --git a/contrib/openpam/lib/pam_set_data.c b/contrib/openpam/lib/pam_set_data.c index 371e8ef..c944e0f 100644 --- a/contrib/openpam/lib/pam_set_data.c +++ b/contrib/openpam/lib/pam_set_data.c @@ -31,7 +31,7 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $P4: //depot/projects/openpam/lib/pam_set_data.c#10 $ + * $P4: //depot/projects/openpam/lib/pam_set_data.c#11 $ */ #include <stdlib.h> @@ -58,30 +58,29 @@ pam_set_data(pam_handle_t *pamh, { pam_data_t *dp; + ENTER(); if (pamh == NULL) - return (PAM_SYSTEM_ERR); - + RETURNC(PAM_SYSTEM_ERR); for (dp = pamh->module_data; dp != NULL; dp = dp->next) { if (strcmp(dp->name, module_data_name) == 0) { if (dp->cleanup) (dp->cleanup)(pamh, dp->data, PAM_SUCCESS); dp->data = data; dp->cleanup = cleanup; - return (PAM_SUCCESS); + RETURNC(PAM_SUCCESS); } } - if ((dp = malloc(sizeof *dp)) == NULL) - return (PAM_BUF_ERR); + RETURNC(PAM_BUF_ERR); if ((dp->name = strdup(module_data_name)) == NULL) { free(dp); - return (PAM_BUF_ERR); + RETURNC(PAM_BUF_ERR); } dp->data = data; dp->cleanup = cleanup; dp->next = pamh->module_data; pamh->module_data = dp; - return (PAM_SUCCESS); + RETURNC(PAM_SUCCESS); } /* |