diff --git a/security/selinux/ibpkey.c b/security/selinux/ibpkey.c index f68a7617cfb95e8e2bf65e3e9ea9f12227004568..3a63a989e55ee6291e0887c0f630e70fdbeccc3e 100644 --- a/security/selinux/ibpkey.c +++ b/security/selinux/ibpkey.c @@ -151,8 +151,10 @@ static int sel_ib_pkey_sid_slow(u64 subnet_prefix, u16 pkey_num, u32 *sid) * is valid, it just won't be added to the cache. */ new = kzalloc(sizeof(*new), GFP_ATOMIC); - if (!new) + if (!new) { + ret = -ENOMEM; goto out; + } new->psec.subnet_prefix = subnet_prefix; new->psec.pkey = pkey_num;