diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/lib/krb5/krb/get_in_tkt.c | 12 |
1 files changed, 7 insertions, 5 deletions
diff --git a/src/lib/krb5/krb/get_in_tkt.c b/src/lib/krb5/krb/get_in_tkt.c index ab5f8ab83..71d1e127f 100644 --- a/src/lib/krb5/krb/get_in_tkt.c +++ b/src/lib/krb5/krb/get_in_tkt.c @@ -823,10 +823,12 @@ krb5_init_creds_init(krb5_context context, ctx->start_time = start_time; if (options == NULL) { - /* We initialize a non-extended options because that way the shadowed - flag will be sent and they will be freed when the init_creds context is - freed. The options will be extended and copied off the stack into - storage by opt_to_opte.*/ + /* + * We initialize a non-extended options because that way the shadowed + * flag will be sent and they will be freed when the init_creds context + * is freed. The options will be extended and copied off the stack into + * storage by opt_to_opte. + */ krb5_get_init_creds_opt_init(&local_opts); options = &local_opts; } @@ -1179,7 +1181,7 @@ init_creds_step_request(krb5_context context, goto cleanup; cleanup: - krb5_free_pa_data( context, ctx->request->padata); + krb5_free_pa_data(context, ctx->request->padata); ctx->request->padata = NULL; return code; } |