1
0
Fork 0

Fix install_process_keyring error handling

Fix an incorrect error check that returns 1 for error instead of the
expected error code.

Signed-off-by: Andi Kleen <ak@linux.intel.com>
Signed-off-by: David Howells <dhowells@redhat.com>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
hifive-unleashed-5.1
Andi Kleen 2010-10-28 13:16:13 +01:00 committed by Linus Torvalds
parent 765aaafe38
commit 27d6379894
1 changed files with 1 additions and 1 deletions

View File

@ -207,7 +207,7 @@ static int install_process_keyring(void)
ret = install_process_keyring_to_cred(new);
if (ret < 0) {
abort_creds(new);
return ret != -EEXIST ?: 0;
return ret != -EEXIST ? ret : 0;
}
return commit_creds(new);