summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--src/lib/krb5/free/f_creds.c38
1 files changed, 38 insertions, 0 deletions
diff --git a/src/lib/krb5/free/f_creds.c b/src/lib/krb5/free/f_creds.c
new file mode 100644
index 000000000..903e8084f
--- /dev/null
+++ b/src/lib/krb5/free/f_creds.c
@@ -0,0 +1,38 @@
+/*
+ * $Source$
+ * $Author$
+ *
+ * Copyright 1990 by the Massachusetts Institute of Technology.
+ *
+ * For copying and distribution information, please see the file
+ * <krb5/mit-copyright.h>.
+ *
+ * krb5_free_creds()
+ */
+
+#if !defined(lint) && !defined(SABER)
+static char rcsid_f_creds_c [] =
+"$Id$";
+#endif /* !lint & !SABER */
+
+#include <krb5/copyright.h>
+#include <krb5/krb5.h>
+#include <krb5/ext-proto.h>
+
+void
+krb5_free_creds(val)
+krb5_creds *val;
+{
+ if (val->client)
+ krb5_free_principal(val->client);
+ if (val->server)
+ krb5_free_principal(val->server);
+ if (val->keyblock.contents)
+ xfree(val->keyblock.contents);
+ if (val->ticket.data)
+ xfree(val->ticket.data);
+ if (val->second_ticket.data)
+ xfree(val->second_ticket.data);
+ xfree(val);
+ return;
+}