diff options
Diffstat (limited to 'usr/src/lib/libsecdb/common/chkauthattr.c')
-rw-r--r-- | usr/src/lib/libsecdb/common/chkauthattr.c | 17 |
1 files changed, 11 insertions, 6 deletions
diff --git a/usr/src/lib/libsecdb/common/chkauthattr.c b/usr/src/lib/libsecdb/common/chkauthattr.c index 9792f42164..5b9a05c1d3 100644 --- a/usr/src/lib/libsecdb/common/chkauthattr.c +++ b/usr/src/lib/libsecdb/common/chkauthattr.c @@ -2,9 +2,8 @@ * CDDL HEADER START * * The contents of this file are subject to the terms of the - * Common Development and Distribution License, Version 1.0 only - * (the "License"). You may not use this file except in compliance - * with the License. + * Common Development and Distribution License (the "License"). + * You may not use this file except in compliance with the License. * * You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE * or http://www.opensolaris.org/os/licensing. @@ -20,7 +19,7 @@ * CDDL HEADER END */ /* - * Copyright 2004 Sun Microsystems, Inc. All rights reserved. + * Copyright 2006 Sun Microsystems, Inc. All rights reserved. * Use is subject to license terms. */ @@ -236,6 +235,13 @@ _get_auth_policy(char **def_auth, char **def_prof) return (0); } +void +_free_auth_policy(char *def_auth, char *def_prof) +{ + free(def_auth); + free(def_prof); +} + /* * read /etc/security/policy.conf for AUTHS_GRANTED. * return 1 if found matching authname. @@ -264,7 +270,6 @@ _chk_policy_auth(const char *authname, char **chkedprof, int *chkedprof_cnt) ret = 0; exit: - free(auths); - free(profs); + _free_auth_policy(auths, profs); return (ret); } |