From af264e82b3dbc0c00c5063c6a147e2fdc418db96 Mon Sep 17 00:00:00 2001 From: Theodore Tso Date: Thu, 3 Jun 1993 11:48:28 +0000 Subject: [PATCH] Pass in actual packet to process_tgs_req so that two different checksumming can be done, in case of ASN.1 screwup. git-svn-id: svn://anonsvn.mit.edu/krb5/trunk@2578 dc483132-0cff-0310-8789-dd5450dbe970 --- src/kdc/dispatch.c | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/src/kdc/dispatch.c b/src/kdc/dispatch.c index 037443e3c..4ecdfdca0 100644 --- a/src/kdc/dispatch.c +++ b/src/kdc/dispatch.c @@ -46,7 +46,6 @@ dispatch(pkt, from, is_secondary, response) krb5_error_code retval; krb5_kdc_req *as_req; - krb5_kdc_req *tgs_req; /* decode incoming packet, and dispatch */ @@ -59,10 +58,7 @@ dispatch(pkt, from, is_secondary, response) /* try TGS_REQ first; they are more common! */ if (krb5_is_tgs_req(pkt)) { - if (!(retval = decode_krb5_tgs_req(pkt, &tgs_req))) { - retval = process_tgs_req(tgs_req, from, is_secondary, response); - krb5_free_kdc_req(tgs_req); - } + retval = process_tgs_req(pkt, from, is_secondary, response); } else if (krb5_is_as_req(pkt)) { if (!(retval = decode_krb5_as_req(pkt, &as_req))) { retval = process_as_req(as_req, from, is_secondary, response); -- 2.26.2