From: Greg Hudson Date: Fri, 30 Jan 2009 21:22:31 +0000 (+0000) Subject: Make output parameter value of krb5_rc_resolve_full well-defined on X-Git-Tag: krb5-1.7-alpha1~14 X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=d45b9dab3bd7327d63cc5b7580fc8738da7faee6;p=krb5.git Make output parameter value of krb5_rc_resolve_full well-defined on error return. git-svn-id: svn://anonsvn.mit.edu/krb5/trunk@21841 dc483132-0cff-0310-8789-dd5450dbe970 --- diff --git a/src/lib/krb5/rcache/rc_base.c b/src/lib/krb5/rcache/rc_base.c index 24a895f7e..ad69282a4 100644 --- a/src/lib/krb5/rcache/rc_base.c +++ b/src/lib/krb5/rcache/rc_base.c @@ -133,12 +133,16 @@ krb5_rc_default(krb5_context context, krb5_rcache *id) } -krb5_error_code krb5_rc_resolve_full(krb5_context context, krb5_rcache *id, char *string_name) +krb5_error_code krb5_rc_resolve_full(krb5_context context, krb5_rcache *idptr, + char *string_name) { char *type; char *residual; krb5_error_code retval; unsigned int diff; + krb5_rcache id; + + *idptr = NULL; if (!(residual = strchr(string_name,':'))) return KRB5_RC_PARSE; @@ -149,22 +153,23 @@ krb5_error_code krb5_rc_resolve_full(krb5_context context, krb5_rcache *id, char (void) strncpy(type, string_name, diff); type[residual - string_name] = '\0'; - if (!(*id = (krb5_rcache) malloc(sizeof(**id)))) { + if (!(id = (krb5_rcache) malloc(sizeof(*id)))) { FREE(type); return KRB5_RC_MALLOC; } - if ((retval = krb5_rc_resolve_type(context, id,type))) { + if ((retval = krb5_rc_resolve_type(context, &id,type))) { FREE(type); - FREE(*id); + FREE(id); return retval; } FREE(type); - if ((retval = krb5_rc_resolve(context, *id,residual + 1))) { - k5_mutex_destroy(&(*id)->lock); - FREE(*id); + if ((retval = krb5_rc_resolve(context, id,residual + 1))) { + k5_mutex_destroy(&id->lock); + FREE(id); return retval; } - (*id)->magic = KV5M_RCACHE; + id->magic = KV5M_RCACHE; + *idptr = id; return retval; }