summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--src/kdc/dispatch.c6
1 files changed, 1 insertions, 5 deletions
diff --git a/src/kdc/dispatch.c b/src/kdc/dispatch.c
index 037443e3c2..4ecdfdca03 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);