This patch fixes the key_ref leak, removes the unnecessary KEY_FLAG_KEEP
test before setting the flag, and cleans up the if/then brackets style
introduced in commit:
d3600bc KEYS: prevent keys from being removed from specified keyrings
Reported-by: David Howells <dhowells@redhat.com>
Signed-off-by: Mimi Zohar <zohar@linux.vnet.ibm.com>
Acked-by: David Howells <dhowells@redhat.com>
 
                        /* and link it into the destination keyring */
                        if (keyring) {
-                               if (test_bit(KEY_FLAG_KEEP, &keyring->flags))
-                                       set_bit(KEY_FLAG_KEEP, &key->flags);
+                               set_bit(KEY_FLAG_KEEP, &key->flags);
 
                                __key_link(key, _edit);
                        }
 
        }
 
        key = key_ref_to_ptr(key_ref);
+       ret = 0;
        if (test_bit(KEY_FLAG_KEEP, &key->flags))
-               return -EPERM;
-       else {
+               ret = -EPERM;
+       else
                key_revoke(key);
-               ret = 0;
-       }
 
        key_ref_put(key_ref);
 error:
 
 invalidate:
        key = key_ref_to_ptr(key_ref);
+       ret = 0;
        if (test_bit(KEY_FLAG_KEEP, &key->flags))
                ret = -EPERM;
-       else {
+       else
                key_invalidate(key);
-               ret = 0;
-       }
 error_put:
        key_ref_put(key_ref);
 error:
 
 okay:
        key = key_ref_to_ptr(key_ref);
+       ret = 0;
        if (test_bit(KEY_FLAG_KEEP, &key->flags))
                ret = -EPERM;
-       else {
+       else
                key_set_timeout(key, timeout);
-               ret = 0;
-       }
        key_put(key);
 
 error: