From 3c8bdaafc3aa4910e2f7f47d38afec8142628704 Mon Sep 17 00:00:00 2001 From: JacobBarthelmeh Date: Wed, 20 May 2026 01:33:52 -0700 Subject: [PATCH] use ENOMEM return instead of MEMORY_E --- linuxkm/lkcapi_aes_glue.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/linuxkm/lkcapi_aes_glue.c b/linuxkm/lkcapi_aes_glue.c index 78f5d0842b..574c7d20de 100644 --- a/linuxkm/lkcapi_aes_glue.c +++ b/linuxkm/lkcapi_aes_glue.c @@ -408,7 +408,7 @@ static int km_AesInitCommon( if (! ctx->aes_decrypt_C) { pr_err("%s: allocation of %zu bytes for decryption key failed.\n", name, sizeof(*ctx->aes_decrypt_C)); - err = -MEMORY_E; + err = -ENOMEM; goto out; }