OSDN Git Service

keys: Fix unreachable code
authorAlan Cox <alan@linux.intel.com>
Thu, 25 Oct 2012 14:23:35 +0000 (15:23 +0100)
committerJiri Kosina <jkosina@suse.cz>
Thu, 25 Oct 2012 16:00:27 +0000 (18:00 +0200)
We set ret to NULL then test it. Remove the bogus test

Signed-off-by: Alan Cox <alan@linux.intel.com>
Signed-off-by: Jiri Kosina <jkosina@suse.cz>
security/keys/process_keys.c

index 54339cf..178b8c3 100644 (file)
@@ -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;