cursor is dead

git-svn-id: svn://svn.h5l.se/heimdal/trunk/heimdal@24003 ec53bebd-3082-4978-b11e-865c3cabbd6b
This commit is contained in:
Love Hörnquist Åstrand
2008-11-02 07:05:18 +00:00
parent 54ae1c514e
commit 58b9d9cd60

View File

@@ -219,8 +219,6 @@ kcm_ccache_alloc(krb5_context context,
slot->client = NULL;
slot->server = NULL;
slot->creds = NULL;
slot->n_cursor = 0;
slot->cursors = NULL;
slot->key.keytab = NULL;
slot->tkt_life = 0;
slot->renew_life = 0;
@@ -247,7 +245,6 @@ kcm_ccache_remove_creds_internal(krb5_context context,
kcm_ccache ccache)
{
struct kcm_creds *k;
struct kcm_cursor *c;
k = ccache->creds;
while (k != NULL) {
@@ -260,20 +257,6 @@ kcm_ccache_remove_creds_internal(krb5_context context,
}
ccache->creds = NULL;
/* remove anything that would have pointed into the creds too */
ccache->n_cursor = 0;
c = ccache->cursors;
while (c != NULL) {
struct kcm_cursor *old;
old = c;
c = c->next;
free(old);
}
ccache->cursors = NULL;
return 0;
}