diff options
author | Greg Hudson <ghudson@mit.edu> | 2009-12-29 18:03:31 +0000 |
---|---|---|
committer | Greg Hudson <ghudson@mit.edu> | 2009-12-29 18:03:31 +0000 |
commit | cf140674b10ca9265e88bfeea96beeeffdaaa1ad (patch) | |
tree | f2abd7cfb808608527cc4ffc85853d0f5b4483a3 /src | |
parent | 069b17798b3326d9279a79939756f3150db95eb7 (diff) | |
download | krb5-cf140674b10ca9265e88bfeea96beeeffdaaa1ad.tar.gz krb5-cf140674b10ca9265e88bfeea96beeeffdaaa1ad.tar.xz krb5-cf140674b10ca9265e88bfeea96beeeffdaaa1ad.zip |
Remove an inoperable error check in return_pkinit_kx
git-svn-id: svn://anonsvn.mit.edu/krb5/trunk@23536 dc483132-0cff-0310-8789-dd5450dbe970
Diffstat (limited to 'src')
-rw-r--r-- | src/plugins/preauth/pkinit/pkinit_srv.c | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/src/plugins/preauth/pkinit/pkinit_srv.c b/src/plugins/preauth/pkinit/pkinit_srv.c index 9db4d0a460..ecd49b59f7 100644 --- a/src/plugins/preauth/pkinit/pkinit_srv.c +++ b/src/plugins/preauth/pkinit/pkinit_srv.c @@ -639,8 +639,6 @@ return_pkinit_kx(krb5_context context, krb5_kdc_req *request, ret = ENOMEM; goto cleanup; } - if (ret) - goto cleanup; pa->pa_type = KRB5_PADATA_PKINIT_KX; pa->length = scratch->length; pa->contents = (krb5_octet *) scratch->data; |