fix uninitialized variable
git-svn-id: svn://svn.h5l.se/heimdal/trunk/heimdal@14545 ec53bebd-3082-4978-b11e-865c3cabbd6b
This commit is contained in:
@@ -87,7 +87,6 @@ static krb5_error_code
|
|||||||
kcmss_close(krb5_context context,
|
kcmss_close(krb5_context context,
|
||||||
krb5_ccache id)
|
krb5_ccache id)
|
||||||
{
|
{
|
||||||
krb5_error_code ret;
|
|
||||||
kcm_ccache c = KCMCACHE(id);
|
kcm_ccache c = KCMCACHE(id);
|
||||||
|
|
||||||
KCM_ASSERT_VALID(c);
|
KCM_ASSERT_VALID(c);
|
||||||
@@ -95,7 +94,7 @@ kcmss_close(krb5_context context,
|
|||||||
id->data.data = NULL;
|
id->data.data = NULL;
|
||||||
id->data.length = 0;
|
id->data.length = 0;
|
||||||
|
|
||||||
return ret;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
static krb5_error_code
|
static krb5_error_code
|
||||||
|
Reference in New Issue
Block a user