krb5_get_cred_from_kdc fails to null terminate the tgt list
authorJeffrey Altman <jaltman@secure-endpoints.com>
Thu, 1 Mar 2007 01:49:11 +0000 (01:49 +0000)
committerJeffrey Altman <jaltman@secure-endpoints.com>
Thu, 1 Mar 2007 01:49:11 +0000 (01:49 +0000)
commit36ff243effef4c41f5a2220b9a0fb8c16ecd5e8c
tree286ee1ced5f3d5e2a25e95576d94610eda4907c3
parent1ae792f71d14828942218ece30fdb6069f5a4960
krb5_get_cred_from_kdc fails to null terminate the tgt list

if the next tgt in a cross-realm traversal cannot be
obtained find_nxt_kdc() was calling krb5_free_creds()
on the last tgt in the list but was failing to nullify
the pointer to the cred that was just freed.

if there were no additional tgts obtained,
krb5_get_cred_from_kdc() would return a non-NULL terminated
cred list to the caller.  This would result in a crash
when attempting to manipulate the non-existent cred past
the end of the list.

This commit nullifies the credential pointer in
find_nxt_kdc() after the call to krb5_free_creds()

ticket: new
tags: pullup

git-svn-id: svn://anonsvn.mit.edu/krb5/trunk@19195 dc483132-0cff-0310-8789-dd5450dbe970
src/lib/krb5/krb/gc_frm_kdc.c