Skip to content

Commit

Permalink
kx509: Fix uninitalized ret var use
Browse files Browse the repository at this point in the history
  • Loading branch information
nicowilliams committed Nov 7, 2019
1 parent fce3f16 commit a2650ef
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion kuser/kx509.c
Expand Up @@ -231,7 +231,7 @@ kx509(struct kx509_options *opt, int argc, char **argv)
{
krb5_kx509_req_ctx req = NULL;
krb5_context context = heimtools_context;
krb5_error_code ret;
krb5_error_code ret = 0;
krb5_ccache ccout = NULL;
krb5_ccache cc = NULL;

Expand Down

0 comments on commit a2650ef

Please sign in to comment.