From: Alan Cox Date: Thu, 25 Oct 2012 14:23:35 +0000 (+0100) Subject: keys: Fix unreachable code X-Git-Url: http://drtracing.org/?a=commitdiff_plain;h=b010520ab3d2;p=deliverable%2Flinux.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;