From 87c0d880c745479c3bf4ffc44dad316e182ac762 Mon Sep 17 00:00:00 2001 From: Ezra Peisach Date: Fri, 8 Jan 2010 14:54:04 +0000 Subject: [PATCH] krb5int_dk_string_to_key fails to set enctype Failure to set the enctype before invoking krb5_k_create_key results in potential memory leak. ticket: 6628 tags: pullup git-svn-id: svn://anonsvn.mit.edu/krb5/trunk@23612 dc483132-0cff-0310-8789-dd5450dbe970 --- src/lib/crypto/krb/dk/stringtokey.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/lib/crypto/krb/dk/stringtokey.c b/src/lib/crypto/krb/dk/stringtokey.c index 9a491879d..4c7206c2a 100644 --- a/src/lib/crypto/krb/dk/stringtokey.c +++ b/src/lib/crypto/krb/dk/stringtokey.c @@ -72,6 +72,7 @@ krb5int_dk_string_to_key(const struct krb5_keytypes *ktp, indata.data = (char *) foldstring; foldkeyblock.length = keylength; foldkeyblock.contents = foldkeydata; + foldkeyblock.enctype = ktp->etype; ret = enc->make_key(&indata, &foldkeyblock); if (ret != 0) -- 2.26.2