From: Alan Cox Date: Thu, 25 Oct 2012 14:23:35 +0000 (+0100) Subject: keys: Fix unreachable code X-Git-Tag: Ubuntu-5.10.0-12.13~20101^2~34 X-Git-Url: https://git.proxmox.com/?a=commitdiff_plain;h=b010520ab3d2c05eb444ed5e01fe6c33842f597a;p=mirror_ubuntu-hirsute-kernel.git keys: Fix unreachable code We set ret to NULL then test it. Remove the bogus test Signed-off-by: Alan Cox Signed-off-by: Jiri Kosina --- diff --git a/security/keys/process_keys.c b/security/keys/process_keys.c index 54339cfd6734..178b8c3b130a 100644 --- a/security/keys/process_keys.c +++ b/security/keys/process_keys.c @@ -357,8 +357,6 @@ key_ref_t search_my_process_keyrings(struct key_type *type, switch (PTR_ERR(key_ref)) { case -EAGAIN: /* no key */ - if (ret) - break; case -ENOKEY: /* negative key */ ret = key_ref; break;