]> git.decadent.org.uk Git - nfs-utils.git/blob - support/gssapi/g_rel_oid_set.c
2005-08-26 Kevin Coffman <kwc@citi.umich.edu>
[nfs-utils.git] / support / gssapi / g_rel_oid_set.c
1 /* #ident  "@(#)gss_release_oid_set.c 1.12     95/08/23 SMI" */
2
3 /*
4  * Copyright 1996 by Sun Microsystems, Inc.
5  *
6  * Permission to use, copy, modify, distribute, and sell this software
7  * and its documentation for any purpose is hereby granted without fee,
8  * provided that the above copyright notice appears in all copies and
9  * that both that copyright notice and this permission notice appear in
10  * supporting documentation, and that the name of Sun Microsystems not be used
11  * in advertising or publicity pertaining to distribution of the software
12  * without specific, written prior permission. Sun Microsystems makes no
13  * representations about the suitability of this software for any
14  * purpose.  It is provided "as is" without express or implied warranty.
15  *
16  * SUN MICROSYSTEMS DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE,
17  * INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS, IN NO
18  * EVENT SHALL SUN MICROSYSTEMS BE LIABLE FOR ANY SPECIAL, INDIRECT OR
19  * CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF
20  * USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR
21  * OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
22  * PERFORMANCE OF THIS SOFTWARE.
23  */
24
25 /*
26  *  glue routine for gss_release_oid_set
27  */
28
29 #include "mglueP.h"
30 #include <stdio.h>
31 #ifdef HAVE_STDLIB_H
32 #include <stdlib.h>
33 #endif
34
35 OM_uint32 KRB5_CALLCONV
36 gss_release_oid_set (minor_status,
37                      set)
38
39 OM_uint32 *             minor_status;
40 gss_OID_set *           set;
41 {
42    size_t index;
43    gss_OID oid;
44     if (minor_status)
45         *minor_status = 0;
46
47     if (set ==NULL)
48         return GSS_S_COMPLETE;
49
50     if (*set == GSS_C_NULL_OID_SET)
51         return(GSS_S_COMPLETE);
52
53     for (index=0; index<(*set)->count; index++) {
54       oid = &(*set)->elements[index];
55       free(oid->elements);
56     }
57     free((*set)->elements);
58     free(*set);
59
60     *set = GSS_C_NULL_OID_SET;
61
62     return(GSS_S_COMPLETE);
63 }