From bf4c239e47d1e363b24e97e4726b18368bae9175 Mon Sep 17 00:00:00 2001 From: Conrad Meyer Date: Mon, 1 Aug 2016 22:57:03 +0000 Subject: [PATCH] opencrypto AES-ICM: Fix heap corruption typo This error looks like it was a simple copy-paste typo in the original commit for this code (r275732). PR: 204009 Reported by: Chang-Hsien Tsai Sponsored by: EMC / Isilon Storage Division --- sys/opencrypto/xform_aes_icm.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sys/opencrypto/xform_aes_icm.c b/sys/opencrypto/xform_aes_icm.c index f4ce885172ef..8d3694fa23a0 100644 --- a/sys/opencrypto/xform_aes_icm.c +++ b/sys/opencrypto/xform_aes_icm.c @@ -65,7 +65,7 @@ struct enc_xform enc_xform_aes_icm = { aes_icm_crypt, aes_icm_crypt, aes_icm_setkey, - rijndael128_zerokey, + aes_icm_zerokey, aes_icm_reinit, };